jojojojojo
This commit is contained in:
parent
49a6c6e7e2
commit
07e8c66ba0
61 changed files with 2522 additions and 2577 deletions
16
.github/workflows/maven.yml
vendored
16
.github/workflows/maven.yml
vendored
|
|
@ -3,9 +3,9 @@ name: Hadder
|
|||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up JDK 1.13
|
||||
uses: actions/setup-java@v1
|
||||
|
|
@ -14,11 +14,11 @@ jobs:
|
|||
- name: Build with Maven
|
||||
run: mvn -B package --file pom.xml
|
||||
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
if: github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
if: github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up JDK 1.13
|
||||
uses: actions/setup-java@v1
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
"Owners": [
|
||||
|
||||
|
||||
],
|
||||
"Database": {
|
||||
"IP":"",
|
||||
"IP": "",
|
||||
"Port": 6775,
|
||||
"DBName": "",
|
||||
"Username": "",
|
||||
|
|
|
|||
343
pom.xml
343
pom.xml
|
|
@ -1,180 +1,183 @@
|
|||
<?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>
|
||||
<groupId>Hadder</groupId>
|
||||
<artifactId>Hadder</artifactId>
|
||||
<version>1.3.15</version>
|
||||
<name>Hadder</name>
|
||||
<inceptionYear>2019</inceptionYear>
|
||||
<description>Hadder is a multi-purpose Discord bot.</description>
|
||||
<url>https://github.com/BigBotNetwork/Hadder</url>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>Hadder</groupId>
|
||||
<artifactId>Hadder</artifactId>
|
||||
<version>1.3.15</version>
|
||||
<name>Hadder</name>
|
||||
<inceptionYear>2019</inceptionYear>
|
||||
<description>Hadder is a multi-purpose Discord bot.</description>
|
||||
<url>https://github.com/BigBotNetwork/Hadder</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU Affero General Public License v3.0</name>
|
||||
<url>https://www.gnu.org/licenses/agpl-3.0.en.html</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU Affero General Public License v3.0</name>
|
||||
<url>https://www.gnu.org/licenses/agpl-3.0.en.html</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.13</maven.compiler.source>
|
||||
<maven.compiler.target>1.13</maven.compiler.target>
|
||||
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
|
||||
</properties>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.13</maven.compiler.source>
|
||||
<maven.compiler.target>1.13</maven.compiler.target>
|
||||
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
|
||||
</properties>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>Hax#6775</id>
|
||||
<name>Hax</name>
|
||||
<email>hax@bigbotnetwork.com</email>
|
||||
<url>https://bigbotnetwork.com/</url>
|
||||
<timezone>Europe/Berlin</timezone>
|
||||
<properties>
|
||||
<picUrl>https://cdn.discordapp.com/avatars/261083609148948488/f2c9efc629ef65fffa634f0d63cd467e.webp</picUrl>
|
||||
</properties>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>Skidder#6775</id>
|
||||
<name>Greg</name>
|
||||
<email>skidder@bigbotnetwork.com</email>
|
||||
<url>https://bigbotnetwork.com/</url>
|
||||
<timezone>Europe/Berlin</timezone>
|
||||
<properties>
|
||||
<picUrl>https://cdn.discordapp.com/avatars/401817301919465482/a_f81bd03e3862de579dec59241714d86d.gif</picUrl>
|
||||
</properties>
|
||||
</developer>
|
||||
</developers>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>Hax#6775</id>
|
||||
<name>Hax</name>
|
||||
<email>hax@bigbotnetwork.com</email>
|
||||
<url>https://bigbotnetwork.com/</url>
|
||||
<timezone>Europe/Berlin</timezone>
|
||||
<properties>
|
||||
<picUrl>https://cdn.discordapp.com/avatars/261083609148948488/f2c9efc629ef65fffa634f0d63cd467e.webp
|
||||
</picUrl>
|
||||
</properties>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>Skidder#6775</id>
|
||||
<name>Greg</name>
|
||||
<email>skidder@bigbotnetwork.com</email>
|
||||
<url>https://bigbotnetwork.com/</url>
|
||||
<timezone>Europe/Berlin</timezone>
|
||||
<properties>
|
||||
<picUrl>https://cdn.discordapp.com/avatars/401817301919465482/a_f81bd03e3862de579dec59241714d86d.gif
|
||||
</picUrl>
|
||||
</properties>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>jcenter</id>
|
||||
<name>jcenter-bintray</name>
|
||||
<url>https://jcenter.bintray.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>jcenter</id>
|
||||
<name>jcenter-bintray</name>
|
||||
<url>https://jcenter.bintray.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>3.6.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.dv8tion</groupId>
|
||||
<artifactId>JDA</artifactId>
|
||||
<version>4.2.0_183</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.json</groupId>
|
||||
<artifactId>json</artifactId>
|
||||
<version>20200518</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.rethinkdb</groupId>
|
||||
<artifactId>rethinkdb-driver</artifactId>
|
||||
<version>2.4.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-simple</artifactId>
|
||||
<version>1.7.30</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>club.minnced</groupId>
|
||||
<artifactId>discord-webhooks</artifactId>
|
||||
<version>0.3.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.kohsuke</groupId>
|
||||
<artifactId>github-api</artifactId>
|
||||
<version>1.115</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sedmelluq</groupId>
|
||||
<artifactId>lavaplayer</artifactId>
|
||||
<version>1.3.50</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>2.11.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>3.6.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.dv8tion</groupId>
|
||||
<artifactId>JDA</artifactId>
|
||||
<version>4.2.0_183</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.json</groupId>
|
||||
<artifactId>json</artifactId>
|
||||
<version>20200518</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.rethinkdb</groupId>
|
||||
<artifactId>rethinkdb-driver</artifactId>
|
||||
<version>2.4.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-simple</artifactId>
|
||||
<version>1.7.30</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>club.minnced</groupId>
|
||||
<artifactId>discord-webhooks</artifactId>
|
||||
<version>0.3.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.kohsuke</groupId>
|
||||
<artifactId>github-api</artifactId>
|
||||
<version>1.115</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sedmelluq</groupId>
|
||||
<artifactId>lavaplayer</artifactId>
|
||||
<version>1.3.50</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>2.11.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.22.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.2.0</version>
|
||||
<configuration>
|
||||
<finalName>Hadder-Build</finalName>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>com.bbn.hadder.Hadder</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.9.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<source>13</source>
|
||||
<target>13</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<configuration>
|
||||
<finalName>Hadder-Build</finalName>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>com.bbn.hadder.Hadder</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.22.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.2.0</version>
|
||||
<configuration>
|
||||
<finalName>Hadder-Build</finalName>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>com.bbn.hadder.Hadder</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.9.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<source>13</source>
|
||||
<target>13</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<configuration>
|
||||
<finalName>Hadder-Build</finalName>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>com.bbn.hadder.Hadder</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -17,15 +17,20 @@
|
|||
package com.bbn.hadder;
|
||||
|
||||
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.misc.*;
|
||||
import com.bbn.hadder.commands.moderation.*;
|
||||
import com.bbn.hadder.commands.music.*;
|
||||
import com.bbn.hadder.commands.nsfw.*;
|
||||
import com.bbn.hadder.commands.owner.*;
|
||||
import com.bbn.hadder.commands.fun.*;
|
||||
import com.bbn.hadder.commands.settings.*;
|
||||
import com.bbn.hadder.commands.music.*;
|
||||
import com.bbn.hadder.core.*;
|
||||
import com.bbn.hadder.commands.settings.LanguageCommand;
|
||||
import com.bbn.hadder.commands.settings.UserPrefixCommand;
|
||||
import com.bbn.hadder.core.CommandHandler;
|
||||
import com.bbn.hadder.core.Config;
|
||||
import com.bbn.hadder.db.Rethink;
|
||||
import com.bbn.hadder.listener.*;
|
||||
import net.dv8tion.jda.api.OnlineStatus;
|
||||
|
|
|
|||
|
|
@ -18,7 +18,10 @@ package com.bbn.hadder.audio;
|
|||
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
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.tools.FriendlyException;
|
||||
import com.sedmelluq.discord.lavaplayer.track.AudioPlaylist;
|
||||
|
|
|
|||
|
|
@ -24,7 +24,9 @@ import net.dv8tion.jda.api.entities.Guild;
|
|||
import net.dv8tion.jda.api.entities.Member;
|
||||
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;
|
||||
|
||||
public class TrackManager extends AudioEventAdapter {
|
||||
|
|
@ -91,13 +93,11 @@ public class TrackManager extends AudioEventAdapter {
|
|||
queue.remove(entry);
|
||||
}
|
||||
|
||||
public boolean isLoop()
|
||||
{
|
||||
public boolean isLoop() {
|
||||
return loop;
|
||||
}
|
||||
|
||||
public void setLoop(boolean repeating)
|
||||
{
|
||||
public void setLoop(boolean repeating) {
|
||||
this.loop = repeating;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,13 +16,13 @@
|
|||
|
||||
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.commands.general.HelpCommand;
|
||||
import com.bbn.hadder.core.CommandHandler;
|
||||
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.MessageEditor;
|
||||
import net.dv8tion.jda.api.JDA;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public class AvatarCommand implements Command {
|
|||
@Override
|
||||
public void executed(String[] args, CommandEvent e) {
|
||||
if (args.length == 0) {
|
||||
User u = e.getAuthor();
|
||||
User u = e.getAuthor();
|
||||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
|
|
@ -39,9 +39,9 @@ public class AvatarCommand implements Command {
|
|||
u.getAsTag(),
|
||||
"",
|
||||
"")
|
||||
.setImage(u.getAvatarUrl())
|
||||
.setFooter(u.getAsTag())
|
||||
.build()).queue();
|
||||
.setImage(u.getAvatarUrl())
|
||||
.setFooter(u.getAsTag())
|
||||
.build()).queue();
|
||||
} else if (e.getMessage().getMentionedUsers().size() == 1) {
|
||||
User u = e.getMessage().getMentionedUsers().get(0);
|
||||
e.getTextChannel().sendMessage(
|
||||
|
|
@ -51,9 +51,9 @@ public class AvatarCommand implements Command {
|
|||
u.getAsTag(),
|
||||
"",
|
||||
"")
|
||||
.setImage(u.getAvatarUrl())
|
||||
.setFooter(u.getAsTag())
|
||||
.build()).queue();
|
||||
.setImage(u.getAvatarUrl())
|
||||
.setFooter(u.getAsTag())
|
||||
.build()).queue();
|
||||
} else if (args[0].length() == 18) {
|
||||
try {
|
||||
User u = e.getJDA().getUserById(args[0]);
|
||||
|
|
@ -77,14 +77,14 @@ public class AvatarCommand implements Command {
|
|||
JSONObject json = new JSONObject(response.body().string());
|
||||
String url = "https://cdn.discordapp.com/avatars/" + args[0] + "/" + json.getString("avatar") + ".png";
|
||||
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.fun.avatar.success.title",
|
||||
json.getString("username") + "#" + json.getString("discriminator"),
|
||||
"",
|
||||
"")
|
||||
.setImage(url)
|
||||
.setFooter(json.getString("username") + "#" + json.getString("discriminator"))
|
||||
.build()).queue();
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.fun.avatar.success.title",
|
||||
json.getString("username") + "#" + json.getString("discriminator"),
|
||||
"",
|
||||
"")
|
||||
.setImage(url)
|
||||
.setFooter(json.getString("username") + "#" + json.getString("discriminator"))
|
||||
.build()).queue();
|
||||
} catch (JSONException ex) {
|
||||
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.ERROR,
|
||||
"commands.fun.avatar.error.title",
|
||||
|
|
|
|||
|
|
@ -66,7 +66,8 @@ public class ClydeCommand implements Command {
|
|||
}
|
||||
webhook.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);
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,18 +41,18 @@ public class MemeCommand implements Command {
|
|||
String url = json.getString("url");
|
||||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
|
||||
"commands.fun.meme.success.title", "")
|
||||
.setImage(url)
|
||||
"commands.fun.meme.success.title", "")
|
||||
.setImage(url)
|
||||
.setAuthor("Subreddit: " + json.getString("subreddit"))
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
} catch (IOException ignore) {
|
||||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.ERROR,
|
||||
"error",
|
||||
"commands.fun.meme.api.error")
|
||||
.setColor(Color.RED)
|
||||
.build()).queue();
|
||||
.setColor(Color.RED)
|
||||
.build()).queue();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@ public class AboutCommand implements Command {
|
|||
"commands.general.about.success.title",
|
||||
"commands.general.about.success.description")
|
||||
.addField(e.getMessageEditor().getTerm("commands.general.about.success.field.one.title"), e.getMessageEditor().getTerm("commands.general.about.success.field.one.description", "(https://donatebot.io/checkout/448554629282922527?buyer=" + e.getAuthor().getId() + "). :smiley:", ""), true)
|
||||
.setThumbnail("https://bigbotnetwork.com/images/Hadder.png")
|
||||
.build()).queue();
|
||||
.setThumbnail("https://bigbotnetwork.com/images/Hadder.png")
|
||||
.build()).queue();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ public class EqualsCommand implements Command {
|
|||
String secondString = msge2.getMessage().getContentRaw();
|
||||
e.getChannel().sendMessage(
|
||||
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"))
|
||||
.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.result"), String.valueOf(firstString.equals(secondString)), 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.second"), secondString, false)
|
||||
.addField(e.getMessageEditor().getTerm("commands.general.equals.string.result"), String.valueOf(firstString.equals(secondString)), false)
|
||||
.build()).queue();
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public class InviteCommand implements Command {
|
|||
"(https://discordapp.com/oauth2/authorize?client_id="
|
||||
+ e.getJDA().getSelfUser().getId()
|
||||
+ "&scope=bot&permissions=1043852663)")
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -48,9 +48,9 @@ public class CoronaCommand implements Command {
|
|||
.build()).queue();
|
||||
} catch (IOException ex) {
|
||||
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.ERROR)
|
||||
.setTitle("API Error")
|
||||
.setDescription("Try again later!")
|
||||
.build()).queue();
|
||||
.setTitle("API Error")
|
||||
.setDescription("Try again later!")
|
||||
.build()).queue();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,16 +33,16 @@ public class FeedbackCommand implements Command {
|
|||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.misc.feedback.title.request.title",
|
||||
"commands.misc.feedback.title.request.description")
|
||||
.build()).queue();
|
||||
new EventWaiter().newOnMessageEventWaiter(e1 -> {
|
||||
String title = e1.getMessage().getContentDisplay();
|
||||
e1.getChannel().sendMessage(e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.misc.feedback.description.request.title",
|
||||
"commands.misc.feedback.description.request.description")
|
||||
"commands.misc.feedback.title.request.title",
|
||||
"commands.misc.feedback.title.request.description")
|
||||
.build()).queue();
|
||||
new EventWaiter().newOnMessageEventWaiter(e1 -> {
|
||||
String title = e1.getMessage().getContentDisplay();
|
||||
e1.getChannel().sendMessage(e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.misc.feedback.description.request.title",
|
||||
"commands.misc.feedback.description.request.description")
|
||||
.build()).queue();
|
||||
new EventWaiter().newOnMessageEventWaiter(e2 -> {
|
||||
String description = e2.getMessage().getContentDisplay();
|
||||
try {
|
||||
|
|
@ -56,12 +56,12 @@ public class FeedbackCommand implements Command {
|
|||
"commands.misc.feedback.success.title",
|
||||
"")
|
||||
.setDescription(issue.getHtmlUrl().toString())
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
} catch (IOException ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,10 +54,12 @@ public class GitHubCommand implements Command {
|
|||
String website = "None";
|
||||
try {
|
||||
bio = json.getString("bio");
|
||||
} catch (JSONException ignored) {}
|
||||
} catch (JSONException ignored) {
|
||||
}
|
||||
try {
|
||||
location = json.getString("location");
|
||||
} catch (JSONException ignored) {}
|
||||
} catch (JSONException ignored) {
|
||||
}
|
||||
|
||||
if (!json.getString("blog").equals("")) website = json.getString("blog");
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
*/
|
||||
|
||||
package com.bbn.hadder.commands.misc;
|
||||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.core.Perm;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ import com.bbn.hadder.commands.CommandEvent;
|
|||
import com.bbn.hadder.utils.EventWaiter;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.MessageEditor.MessageType;
|
||||
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
import net.dv8tion.jda.api.entities.VoiceChannel;
|
||||
|
||||
|
|
@ -31,8 +30,8 @@ public class ScreenShareCommand implements Command {
|
|||
|
||||
@Override
|
||||
public void executed(String[] args, CommandEvent e) {
|
||||
if (args.length>0) {
|
||||
if (args[0].matches("[0-9]*") && args.length==1 && args[0].length() == 18) {
|
||||
if (args.length > 0) {
|
||||
if (args[0].matches("[0-9]*") && args.length == 1 && args[0].length() == 18) {
|
||||
if (e.getGuild().getVoiceChannelById(args[0]) != null) {
|
||||
e.getChannel().sendMessage(e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
|
|
@ -66,7 +65,7 @@ public class ScreenShareCommand implements Command {
|
|||
e.getHelpCommand().sendHelp(this, e);
|
||||
}
|
||||
}, 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.getHelpCommand().sendHelp(this, e);
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public class ServerStatsCommand implements Command {
|
|||
.addField("Emotes", String.valueOf(e.getGuild().getEmotes().size()), true)
|
||||
.addField("Categories", String.valueOf(e.getGuild().getCategories().size()), true)
|
||||
.addField("Text/Voice/Store Channels", "`" + e.getGuild().getTextChannels().size() + "`" + "/" + "`" + e.getGuild().getVoiceChannels().size() + "`" + "/" + "`" + e.getGuild().getStoreChannels().size() + "`", true)
|
||||
.addField("Verification Level", e.getGuild().getVerificationLevel().getKey() + ": " + e.getGuild().getVerificationLevel(), true)
|
||||
.addField("Verification Level", e.getGuild().getVerificationLevel().getKey() + ": " + e.getGuild().getVerificationLevel(), true)
|
||||
.addField("MFA Level", String.valueOf(e.getGuild().getRequiredMFALevel().getKey()), true)
|
||||
.addField("Member Count", String.valueOf(e.getGuild().getMemberCount()), true)
|
||||
.addField("Explicit Content Level", e.getGuild().getExplicitContentLevel().getKey() + ": " + e.getGuild().getExplicitContentLevel(), true)
|
||||
|
|
@ -48,7 +48,8 @@ public class ServerStatsCommand implements Command {
|
|||
.setImage(e.getGuild().getBannerUrl());
|
||||
|
||||
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();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,14 +108,14 @@ public class RegionChangeCommand implements Command {
|
|||
.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.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.moderation.regionchange.success.title", "",
|
||||
"commands.moderation.regionchange.success.description", region_name)
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -31,7 +31,8 @@ public class RoleAssignmentCommand implements Command {
|
|||
//TODO: THIS LOL
|
||||
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
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ public class RulesCommand implements Command {
|
|||
"",
|
||||
"commands.moderation.rules.rules.description",
|
||||
channel.getName())
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
e.getEventWaiter().newOnMessageEventWaiter(e2 -> {
|
||||
String message = e2.getMessage().getContentRaw();
|
||||
e2.getChannel().sendMessage(
|
||||
|
|
@ -94,21 +94,21 @@ public class RulesCommand implements Command {
|
|||
MessageEditor.MessageType.INFO,
|
||||
"commands.moderation.rules.role.title",
|
||||
"commands.moderation.rules.role.description")
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
new EventWaiter().newOnMessageEventWaiter(e3 -> {
|
||||
if (e3.getMessage().getMentionedRoles().size() == 1) {
|
||||
Role role = e3.getMessage().getMentionedRoles().get(0);
|
||||
setRole(e, channel, message, e3, role);
|
||||
} else if (e3.getGuild().getRolesByName(e3.getMessage().getContentRaw(), true).size() > 0) {
|
||||
Role role = e3.getGuild().getRolesByName(e3.getMessage().getContentRaw(), true).get(0);
|
||||
setRole(e, channel, message, e3, role);
|
||||
Role role = e3.getGuild().getRolesByName(e3.getMessage().getContentRaw(), true).get(0);
|
||||
setRole(e, channel, message, e3, role);
|
||||
} else {
|
||||
e3.getChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.ERROR,
|
||||
"commands.moderation.rules.role.error.title",
|
||||
"commands.moderation.rules.role.error.description")
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
}
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
}, e.getJDA(), e.getAuthor());
|
||||
|
|
@ -124,7 +124,7 @@ public class RulesCommand implements Command {
|
|||
MessageEditor.MessageType.ERROR,
|
||||
"commands.moderation.rules.guild.error.title",
|
||||
"commands.moderation.rules.guild.error.description")
|
||||
.build()).queue();
|
||||
.build()).queue();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,18 +25,18 @@ public class StarboardCommand implements Command {
|
|||
|
||||
@Override
|
||||
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.getChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.INFO,
|
||||
"commands.moderation.starboard.success.title","")
|
||||
"commands.moderation.starboard.success.title", "")
|
||||
.build())
|
||||
.queue();
|
||||
} else {
|
||||
if (args.length>0) {
|
||||
if (args.length > 0) {
|
||||
TextChannel channel = e.getGuild().getTextChannelById(args[0]);
|
||||
if (channel!=null) {
|
||||
if (channel != null) {
|
||||
e.getRethinkServer().setStarboard(channel.getId());
|
||||
}
|
||||
} else e.getHelpCommand().sendHelp(this, e);
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@ import com.bbn.hadder.utils.MessageEditor;
|
|||
import com.sedmelluq.discord.lavaplayer.filter.equalizer.EqualizerFactory;
|
||||
|
||||
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,
|
||||
-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};
|
||||
|
||||
@Override
|
||||
public void executed(String[] args, CommandEvent e) {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public class JoinCommand implements Command {
|
|||
public void executed(String[] args, CommandEvent e) {
|
||||
if (e.getMember().getVoiceState().inVoiceChannel()) {
|
||||
AudioManager audioManager = e.getGuild().getAudioManager();
|
||||
if(!audioManager.isAttemptingToConnect()) {
|
||||
if (!audioManager.isAttemptingToConnect()) {
|
||||
VoiceChannel vc = e.getMember().getVoiceState().getChannel();
|
||||
if (e.getGuild().getSelfMember().getVoiceState().inVoiceChannel()) {
|
||||
if (!e.getGuild().getSelfMember().getVoiceState().getChannel().getId().equals(vc.getId())) {
|
||||
|
|
@ -51,11 +51,11 @@ public class JoinCommand implements Command {
|
|||
}
|
||||
} else {
|
||||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.WARNING,
|
||||
"commands.music.join.error.connecting.already.title",
|
||||
"commands.music.join.error.connecting.already.description")
|
||||
.build()).queue();
|
||||
e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.WARNING,
|
||||
"commands.music.join.error.connecting.already.title",
|
||||
"commands.music.join.error.connecting.already.description")
|
||||
.build()).queue();
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
|
|
@ -74,16 +74,16 @@ public class JoinCommand implements Command {
|
|||
}
|
||||
} else {
|
||||
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.WARNING,
|
||||
"commands.music.join.error.connecting.trying.title",
|
||||
"commands.music.join.error.connecting.trying.description")
|
||||
.build()).queue();
|
||||
MessageEditor.MessageType.WARNING,
|
||||
"commands.music.join.error.connecting.trying.title",
|
||||
"commands.music.join.error.connecting.trying.description")
|
||||
.build()).queue();
|
||||
}
|
||||
} else {
|
||||
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(
|
||||
MessageEditor.MessageType.ERROR,
|
||||
"commands.music.join.error.channel.title",
|
||||
"commands.music.join.error.channel.description")
|
||||
MessageEditor.MessageType.ERROR,
|
||||
"commands.music.join.error.channel.title",
|
||||
"commands.music.join.error.channel.description")
|
||||
.build()).queue();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,10 +38,10 @@ public class QueueCommand implements Command {
|
|||
long queuelength = 0;
|
||||
for (AudioInfo g : queue) {
|
||||
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,
|
||||
"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())
|
||||
.build()).queue();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ public class RecordCommand implements Command {
|
|||
audioManager.openAudioConnection(event.getMember().getVoiceState().getChannel());
|
||||
} else {
|
||||
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");
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class AnalCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class BDSMCommand implements Command {
|
||||
|
||||
|
|
@ -42,7 +42,7 @@ public class BDSMCommand implements Command {
|
|||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[] { "bdsm" };
|
||||
return new String[]{"bdsm"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class BlowjobCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class BoobsCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class CumCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class EroticCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class FeetCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class FingeringCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class LickingCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class PornCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class PussyCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class RandomPornCommand implements Command {
|
||||
|
||||
|
|
@ -44,7 +44,7 @@ public class RandomPornCommand implements Command {
|
|||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[] { "randomporn", "pornrandom" };
|
||||
return new String[]{"randomporn", "pornrandom"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class SoloCommand implements Command {
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class SpankCommand implements Command {
|
||||
|
||||
|
|
@ -42,7 +42,7 @@ public class SpankCommand implements Command {
|
|||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[] { "spank", "beat", "hit" };
|
||||
return new String[]{"spank", "beat", "hit"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
|
|||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import com.bbn.hadder.utils.Http;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
|
||||
public class TransCommand implements Command {
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ public class TransCommand implements Command {
|
|||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[] { "trans" };
|
||||
return new String[]{"trans"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -16,11 +16,11 @@
|
|||
|
||||
package com.bbn.hadder.commands.owner;
|
||||
|
||||
import com.bbn.hadder.db.RethinkUser;
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
import com.bbn.hadder.core.Perm;
|
||||
import com.bbn.hadder.core.Perms;
|
||||
import com.bbn.hadder.db.RethinkUser;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import net.dv8tion.jda.api.entities.User;
|
||||
|
||||
|
|
@ -50,12 +50,12 @@ public class BlacklistCommand implements Command {
|
|||
LinkedHashSet<String> hashSet = new LinkedHashSet<>(commands);
|
||||
|
||||
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);
|
||||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
|
||||
"commands.owner.blacklist.success."+args[0].toLowerCase()+".title", "",
|
||||
"commands.owner.blacklist.success."+args[0].toLowerCase()+".description", newblacklisted)
|
||||
"commands.owner.blacklist.success." + args[0].toLowerCase() + ".title", "",
|
||||
"commands.owner.blacklist.success." + args[0].toLowerCase() + ".description", newblacklisted)
|
||||
.build()).queue();
|
||||
u.push();
|
||||
} else e.getHelpCommand().sendHelp(this, e);
|
||||
|
|
@ -75,7 +75,7 @@ public class BlacklistCommand implements Command {
|
|||
e.getTextChannel().sendMessage(
|
||||
e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO)
|
||||
.setTitle("Blacklisted Users")
|
||||
.setDescription((stringBuilder.length()!=0) ? ("``" + stringBuilder.toString() + "``") : "No blacklisted Users")
|
||||
.setDescription((stringBuilder.length() != 0) ? ("``" + stringBuilder.toString() + "``") : "No blacklisted Users")
|
||||
.build()).queue();
|
||||
break;
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public class LanguageCommand implements Command {
|
|||
"commands.settings.language.error.title", "",
|
||||
"commands.settings.language.error.description", "`de`, `en`, `es`, `fr`, `ru`, `tr`, `zh`")
|
||||
.build()).queue();
|
||||
break;
|
||||
break;
|
||||
}
|
||||
} else e.getHelpCommand().sendHelp(this, e);
|
||||
}
|
||||
|
|
@ -70,7 +70,7 @@ public class LanguageCommand implements Command {
|
|||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[] { "language" };
|
||||
return new String[]{"language"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ public class UserPrefixCommand implements Command {
|
|||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[] { "userprefix" };
|
||||
return new String[]{"userprefix"};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -16,13 +16,13 @@
|
|||
|
||||
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.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
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.MessageEditor;
|
||||
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
|
||||
|
|
|
|||
|
|
@ -16,11 +16,11 @@
|
|||
|
||||
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.RethinkServer;
|
||||
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.Permission;
|
||||
import net.dv8tion.jda.api.entities.ChannelType;
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@
|
|||
|
||||
package com.bbn.hadder.listener;
|
||||
|
||||
import com.bbn.hadder.db.Rethink;
|
||||
import com.bbn.hadder.core.Config;
|
||||
import com.bbn.hadder.db.Rethink;
|
||||
import com.bbn.hadder.utils.BotList;
|
||||
import com.bbn.hadder.utils.MessageEditor;
|
||||
import net.dv8tion.jda.api.entities.Member;
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ public class MentionListener extends ListenerAdapter {
|
|||
);
|
||||
builder.addField("Developer", devs.toString(), false);
|
||||
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);
|
||||
e.getChannel().sendMessage(builder.build()).queue();
|
||||
} else if (e.getMessage().getContentRaw().equalsIgnoreCase("@someone")) {
|
||||
|
|
|
|||
|
|
@ -5,11 +5,9 @@
|
|||
package com.bbn.hadder.listener;
|
||||
|
||||
import com.bbn.hadder.core.Config;
|
||||
import com.bbn.hadder.core.Perms;
|
||||
import net.dv8tion.jda.api.entities.Emote;
|
||||
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
|
||||
import net.dv8tion.jda.api.hooks.ListenerAdapter;
|
||||
import org.json.JSONObject;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
|
||||
|
|
@ -28,7 +26,7 @@ public class OwnerMessageListener extends ListenerAdapter {
|
|||
if (!emotename.contains(" ")) {
|
||||
Emote[] emotes = event.getJDA().getEmotesByName(emotename, true).toArray(new Emote[0]);
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if (emotes.length!=0) {
|
||||
if (emotes.length != 0) {
|
||||
for (Emote emote : emotes) {
|
||||
sb.append(emote.getAsMention()).append(" ");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@
|
|||
|
||||
package com.bbn.hadder.listener;
|
||||
|
||||
import com.bbn.hadder.db.Rethink;
|
||||
import com.bbn.hadder.core.Config;
|
||||
import com.bbn.hadder.db.Rethink;
|
||||
import com.bbn.hadder.utils.BotList;
|
||||
import net.dv8tion.jda.api.entities.Guild;
|
||||
import net.dv8tion.jda.api.entities.User;
|
||||
|
|
|
|||
|
|
@ -60,14 +60,15 @@ public class RulesListener extends ListenerAdapter {
|
|||
RethinkServer rethinkServer = new RethinkServer(rethink.getObjectByID("server", e.getGuild().getId()), rethink);
|
||||
if (e.getMember().getRoles().contains(e.getGuild().getRoleById(rethinkServer.getRoleID()))) {
|
||||
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
|
||||
public void onMessageReactionRemove(MessageReactionRemoveEvent e) {
|
||||
RethinkServer rethinkServer = new RethinkServer(rethink.getObjectByID("server", e.getGuild().getId()), rethink);
|
||||
if (e.getMessageId().equals(rethinkServer.getMessageID()) && !e.getUser().isBot()) {
|
||||
e.getGuild().removeRoleFromMember(e.getMember(), e.getGuild().getRoleById(rethinkServer.getRoleID())).reason("Withdrawal of the acceptance of the rules").queue();
|
||||
e.getGuild().removeRoleFromMember(e.getMember(), e.getGuild().getRoleById(rethinkServer.getRoleID())).reason("Withdrawal of the acceptance of the rules").queue();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public class EventWaiter {
|
|||
Object listener = new ListenerAdapter() {
|
||||
@Override
|
||||
public void onGuildMessageReceived(@Nonnull GuildMessageReceivedEvent event) {
|
||||
if (user==null) {
|
||||
if (user == null) {
|
||||
onEvent.accept(event);
|
||||
event.getJDA().getShardManager().removeEventListener(this);
|
||||
} else if (event.getAuthor().getId().equals(user.getId())) {
|
||||
|
|
@ -47,7 +47,7 @@ public class EventWaiter {
|
|||
Object listener = new ListenerAdapter() {
|
||||
@Override
|
||||
public void onGuildMessageReactionAdd(@Nonnull GuildMessageReactionAddEvent event) {
|
||||
if (user==null) {
|
||||
if (user == null) {
|
||||
onEvent.accept(event);
|
||||
event.getJDA().getShardManager().removeEventListener(this);
|
||||
} else if (event.getUser().getId().equals(user.getId())) {
|
||||
|
|
|
|||
|
|
@ -49,11 +49,12 @@ public class MessageEditor {
|
|||
}
|
||||
|
||||
public EmbedBuilder getMessage(MessageType type, String title, String title_extra, String title_extra_two,
|
||||
String description, String description_extra, String description_extra_two) {
|
||||
String language = (this.user!=null) ? rethinkUser.getLanguage() : null;
|
||||
String description, String description_extra, String description_extra_two) {
|
||||
String language = (this.user != null) ? rethinkUser.getLanguage() : null;
|
||||
EmbedBuilder eb = this.getDefaultSettings(type);
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
@ -133,6 +134,7 @@ public class MessageEditor {
|
|||
ResourceBundle resourceBundle = ResourceBundle.getBundle("Translations/Translations", locale);
|
||||
if (resourceBundle.containsKey(string))
|
||||
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 + "`";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,326 +13,316 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Fehler
|
||||
none = Nicht angegeben
|
||||
success\! = Erfolgreich\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar von %extra%
|
||||
commands.fun.avatar.error.title = Benutzer nicht gefunden
|
||||
commands.fun.avatar.error.description = Ich kann keinen Benutzer mit dieser ID finden\!
|
||||
commands.fun.avatar.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Bitte versuche es mit einem anderen Begriff erneut.
|
||||
commands.fun.gif.help.description = Sucht nach einem GIF auf Giphy.
|
||||
commands.fun.meme.success.title = Dein zufälliges Meme\:
|
||||
commands.fun.meme.api.error = Die Anfrage an die Meme-API konnte nicht verarbeitet werden. Bitte versuche es später erneut.
|
||||
commands.fun.meme.help.description = Sendet dir einen zufälligen Meme.
|
||||
commands.fun.clyde.help.description = Sendet eine Nachricht als Webhook namens Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - Info
|
||||
commands.general.about.success.description = Hadder ist ein Open-Source Discord Bot.
|
||||
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.help.description = Zeigt Informationen über Hadder.
|
||||
commands.general.equals.string.first.request = Bitte sende mir den ersten String.
|
||||
commands.general.equals.string.second.request = Bitte sende mir den zweiten String.
|
||||
commands.general.equals.string.equals.true = Ja\! Der erste String entspricht dem zweiten String\!
|
||||
commands.general.equals.string.equals.false = Ja, aber eigentlich nein. Das ist nicht dasselbe.
|
||||
commands.general.equals.string.first = Erster String\:
|
||||
commands.general.equals.string.second = Zweiter String\:
|
||||
commands.general.equals.string.result = Ergebnis\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Beschreibung\:**
|
||||
commands.general.help.usage = **Benutzung\:**
|
||||
commands.general.help.example = **Beispiel\:**
|
||||
commands.general.help.error.description = Ich brauche die Links Einbetten Berechtigung, um das Hilfe-Menü zu senden\!
|
||||
commands.general.help.help.description = Zeigt jeden Befehl an und erklärt seine Verwendung.
|
||||
commands.general.help.help.label = [Name des Commands]
|
||||
commands.general.invite.success.title = Lade mich ein\!
|
||||
commands.general.invite.success.description = [Lade mich hier ein\!]%extra%
|
||||
commands.general.invite.help.description = Zeigt den Einladungslink an, um Hadder auf deinen Server einzuladen.
|
||||
commands.general.ping.help.description = Zeigt den Ping zur Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback-Thema
|
||||
commands.misc.feedback.title.request.description = Bitte senden Sie mir das Thema des Feedbacks.
|
||||
commands.misc.feedback.description.request.title = Feedback Beschreibung
|
||||
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.help.description = Sendet Feedback direkt an die Entwickler.
|
||||
commands.misc.github.link.title = Verbinde dein GitHub Konto
|
||||
commands.misc.github.success.title = Informationen über %extra%
|
||||
commands.misc.github.success.bio = Biographie
|
||||
commands.misc.github.success.location = Standort
|
||||
commands.misc.github.success.website = Webseite
|
||||
commands.misc.github.success.repositories = Öffentliche Repositories
|
||||
commands.misc.github.success.gists = Öffentliche Gists
|
||||
commands.misc.github.success.followers = Abonnenten
|
||||
commands.misc.github.success.following = Folgt
|
||||
commands.misc.github.api.error.title = API-Fehler
|
||||
commands.misc.github.api.error.description = Die GitHub API könnte im Moment nicht verfügbar sein\!
|
||||
commands.misc.github.user.error.title = Benutzer existiert nicht
|
||||
commands.misc.github.user.error.description = Ich kann keinen Benutzer finden der so heißt\!
|
||||
commands.misc.github.connect.title = Verbinde dein GH Konto
|
||||
commands.misc.github.connect.description = [Bitte verbinde dein GitHub-Konto hier]%extra%
|
||||
commands.misc.github.help.description = Zeigt Informationen über ein GitHub Benutzerprofil an.
|
||||
commands.misc.screenshare.success.title = Hier ist deine URL, um deinen Bildschirm zu teilen
|
||||
commands.misc.screenshare.id.error.title = Warte. Das ist illegal.
|
||||
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.error.title = Bitte wähle einen Sprachkanal
|
||||
commands.misc.screenshare.channel.error.description = Es gibt mehr als einen Sprachkanal mit diesem Namen
|
||||
commands.misc.screenshare.number.error.title = Du hast eine falsche Nummer angegeben\!
|
||||
commands.misc.screenshare.number.error.description = Dies ist keine Zahl.
|
||||
commands.misc.screenshare.channel.existing.error = Warte ma'
|
||||
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.help.description = Zeigt dir den Link zum Teilen deines Bildschirms.
|
||||
commands.misc.serverstats.title = Serverstatistiken
|
||||
commands.misc.serverstats.description = Diese Nachricht enthält einige Informationen über `&extra&`
|
||||
commands.misc.serverstats.help.description = Zeigt Informationen über einen Server.
|
||||
commands.misc.profile.error.title = Nicht gefunden
|
||||
commands.misc.profile.error.description = Ich kann den angegebenen Benutzer nicht finden.
|
||||
commands.misc.profile.help.description = Zeigt einige Informationen über den angegebenen Benutzer.
|
||||
commands.misc.code.success.title = Informationen zum Einladungscode
|
||||
commands.misc.code.success.description = Diese Nachricht enthält einige Informationen über den angegebenen Einladungscode.
|
||||
commands.misc.code.error.title = Code nicht gefunden
|
||||
commands.misc.code.error.description = Ich kann den angegebenen Einladungscode nicht finden.
|
||||
commands.misc.code.help.description = Zeigt Informationen über einen Einladungs-Code.
|
||||
commands.misc.moveall.success.title = Erfolgreich verschoben
|
||||
commands.misc.moveall.success.description = Ich habe erfolgreich %extra% Mitglieder verschoben. Viel Spaß\!
|
||||
commands.misc.moveall.error.equals.title = Nicht zweimal
|
||||
commands.misc.moveall.error.equals.description = Der erste Sprachkanal gleicht dem zweiten. Du musst zwei verschiedene Sprachkanäle angeben.
|
||||
commands.misc.moveall.error.source.int.title = Ungültige ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Ungültige ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Verschiebt alle Benutzer des Ursprungskanals in den Zielkanal.
|
||||
commands.misc.corona.help.description = Zeigt die neuesten Statistiken von COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Erfolgreich gebannt
|
||||
commands.moderation.ban.success.description = Ich habe %extra% erfolgreich gebannt
|
||||
commands.moderation.ban.error.title = Nicht möglich
|
||||
commands.moderation.ban.myself.error.description = Ich kann mich nicht selbst bannen\!
|
||||
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.help.description = Bannt einen oder mehrere Benutzer vom Server.
|
||||
commands.moderation.clear.all.success.title = Erfolgreich gelöscht
|
||||
commands.moderation.clear.all.success.description = Ich habe erfolgreich %extra% Nachrichten gelöscht.
|
||||
commands.moderation.clear.number.error.title = Ungültige Nummer
|
||||
commands.moderation.clear.number.error.description = Sie müssen eine Zahl zwischen 1 und 99 wählen\!
|
||||
commands.moderation.clear.success.title = Erfolgreich gelöscht
|
||||
commands.moderation.clear.success.description.singular = Nachricht erfolgreich gelöscht.
|
||||
commands.moderation.clear.success.description.plural = Ich habe erfolgreich %extra% Nachrichten gelöscht.
|
||||
commands.moderation.clear.message.error.title = Keine Nachrichten\!
|
||||
commands.moderation.clear.message.error.description = Es gibt keine Nachrichten in diesem Kanal.
|
||||
commands.moderation.clear.help.description = Löscht die angegebene Anzahl von Nachrichten.
|
||||
commands.moderation.prefix.success.title = Erfolgreich festgelegt
|
||||
commands.moderation.prefix.success.description = Ich habe erfolgreich den neuen Prefix für den Server auf `%extra% ` gesetzt.
|
||||
commands.moderation.prefix.error.description = Der Prefix darf nicht **"** enthalten
|
||||
commands.moderation.prefix.help.description = Legt den Guild-Prefix fest.
|
||||
commands.moderation.invitedetect.activate.success.title = Erfolgreich aktiviert
|
||||
commands.moderation.invitedetect.activate.success.description = Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server aktiviert.
|
||||
commands.moderation.invitedetect.activate.error.title = Bereits aktiviert
|
||||
commands.moderation.invitedetect.activate.error.description = Die Erkennung von Einladungs-Links ist auf diesem Server bereits aktiviert.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Erfolgreich deaktiviert
|
||||
commands.moderation.invitedetect.deactivate.success.description = Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server deaktiviert.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Bereits deaktiviert
|
||||
commands.moderation.invitedetect.deactivate.error.description = Die Erkennung von Einladungs-Links ist auf diesem Server bereits deaktiviert.
|
||||
commands.moderation.invitedetect.help.description = Aktiviert oder deaktiviert die Discord Einladungserkennung.
|
||||
commands.moderation.kick.success.title = %extra% Erfolgreich gekickt %extra%
|
||||
commands.moderation.kick.success.description = Ich habe %extra% erfolgreich gekickt.
|
||||
commands.moderation.kick.error.title = Nicht möglich
|
||||
commands.moderation.kick.myself.error.description = Ich kann mich nicht selbst kicken\!
|
||||
commands.moderation.kick.yourself.error.description = Du kannst dich nicht selbst kicken.
|
||||
commands.moderation.kick.mass.success.description = Ich habe %extra% Mitglieder erfolgreich gekickt\!
|
||||
commands.moderation.kick.help.description = Wirft einen oder mehrere Benutzer vom Server.
|
||||
commands.moderation.kick.masskick.success.description = Ich habe %extra% Mitglieder erfolgreich gekickt.
|
||||
commands.moderation.nick.success.title = Erfolgreich umbenannt
|
||||
commands.moderation.nick.success.description = Ich habe %extra% erfolgreich umbenannt.
|
||||
commands.moderation.nick.myself.success.description = Ich habe meinen Spitznamen erfolgreich geändert.
|
||||
commands.moderation.nick.massnick.success.description = Ich habe erfolgreich %extra% Mitglieder umbenannt.
|
||||
commands.moderation.nick.help.description = Benennt einen oder mehrere Benutzer um.
|
||||
commands.moderation.regionchange.regions.title = Alle Regionen
|
||||
commands.moderation.regionchange.success.title = Region erfolgreich gesetzt
|
||||
commands.moderation.regionchange.success.description = Ich habe die neue Serverregion erfolgreich zu %extra% geändert.
|
||||
commands.moderation.regionchange.help.description = Ändert die Server Region zu gesperrten Regionen.
|
||||
commands.moderation.role.add.success.title = Rolle(n) erfolgreich hinzugefügt
|
||||
commands.moderation.role.add.success.description = Ich habe %extra% Rollen zu %extra_two% Mitgliedern hinzugefügt.
|
||||
commands.moderation.role.remove.success.title = Rolle(n) erfolgreich entfernt
|
||||
commands.moderation.role.remove.success.description = Ich habe %extra% Rollen von %extra_two% Mitgliedern entfernt.
|
||||
commands.moderation.role.help.description = Fügt und entfernt eine oder mehrere Rolle(n) von einem oder mehreren Benutzer(n) hinzu
|
||||
commands.moderation.rules.setup.title = Regeln einrichten
|
||||
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.channel.error.title = Kanal konnte nicht gefunden werden
|
||||
commands.moderation.rules.channel.error.description = Ich kann den angegebenen Kanal nicht finden. Bitte starte das Setup erneut.
|
||||
commands.moderation.rules.rules.title = Regelnachricht
|
||||
commands.moderation.rules.rules.description = Der Kanal wurde erfolgreich auf %extra% gesetzt. Bitte senden Sie mir jetzt die Regeln.
|
||||
commands.moderation.rules.role.title = Rolle zum Hinzufügen
|
||||
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.role.error.title = Rolle existiert nicht
|
||||
commands.moderation.rules.role.error.description = Die angegebene Rolle existiert auf diesem Server nicht.
|
||||
commands.moderation.rules.role.permission.error.title = Keine Berechtigung
|
||||
commands.moderation.rules.role.permission.error.description = Du kannst diese Rolle nicht auswählen, weil du keinen Zugriff auf sie hast.
|
||||
commands.moderation.rules.guild.error.title = Falsche Guild
|
||||
commands.moderation.rules.guild.error.description = Der erwähnte Kanal muss auf diesem Server sein\!
|
||||
commands.moderation.rules.emote.accept.title = Benutzerdefiniertes Zustimmungsemote
|
||||
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.emote.decline.title = Benutzerdefiniertes Ablehnungsemote
|
||||
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.emote.error.access.description = Ich kann auf die benutzerdefinierten Emote(s) nicht zugreifen.
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes sind gleich
|
||||
commands.moderation.rules.emote.error.equal.description = Die zwei angegebenen Emotes sind gleich.
|
||||
commands.moderation.rules.emoji.decline.description = Das erste Emote wurde erfolgreich festgelegt. Bitte sende mir jetzt das Ablehnungsemote.
|
||||
commands.moderation.rules.emoji.error.description = Das angegebene Emote kann nicht verwendet werden.
|
||||
commands.moderation.rules.success.title = Regeln erfolgreich festgelegt
|
||||
commands.moderation.rules.success.description = Ich habe die Regeln erfolgreich in %extra% gesendet.
|
||||
commands.moderation.rules.error.message.title = Keine Berechtigung
|
||||
commands.moderation.rules.error.message.description = Ich kann keine Nachrichten in dem angegebenen Kanal schreiben
|
||||
commands.moderation.rules.error.permission.title = Keine Berechtigung
|
||||
commands.moderation.rules.error.permission.description = Um diesen Befehl auszuführen, benötige ich die `Rollen verwalten` Berechtigung.
|
||||
commands.moderation.rules.error.interact.title = Kein Zugriff
|
||||
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.help.description = Richte Regeln auf deinem Discord Server ein
|
||||
commands.moderation.starboard.success.title = Kanal erfolgreich festgelegt\!
|
||||
commands.moderation.starboard.help.description = Legt den Kanal für das Starboard fest.
|
||||
commands.moderation.editrules.channel.title = Kanal der Regeln
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Kanal konnte nicht gefunden werden
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = Keine Regelnachricht
|
||||
commands.moderation.editrules.channel.message.error.description = Ich kann die Regelnachricht im angegebenen Kanal nicht finden.
|
||||
commands.moderation.editrules.message.title = Neue Nachricht
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = Keine Regeln
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Erfolgreich geändert
|
||||
commands.moderation.editrules.success.description = Ich habe erfolgreich die Regeln geändert
|
||||
commands.moderation.editrules.help.description = Bearbeitet die Regelnachricht.
|
||||
|
||||
commands.music.bass.error.connected.title = Kein Kanal
|
||||
commands.music.bass.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um den Bass zu ändern.
|
||||
commands.music.bass.help.description = Ändere den Bass für den Song, welcher gerade abgespielt wird.
|
||||
commands.music.join.success.title = Erfolgreich verbunden
|
||||
commands.music.join.success.description = Ich habe mich erfolgreich mit %extra% verbunden.
|
||||
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.join.error.connecting.trying.title = Verbindung wird bereits hergestellt
|
||||
commands.music.join.error.connecting.trying.description = Hadder versucht bereits, sich zu verbinden. Bitte warte einen Moment
|
||||
commands.music.join.error.channel.title = Kein Sprachkanal
|
||||
commands.music.join.error.channel.description = Du befindest dich nicht in einem Sprachkanal.
|
||||
commands.music.join.error.permission.title = Keine Berechtigung
|
||||
commands.music.join.error.permission.description = Ich bin nicht Berechtigt deinem Sprachkanal beizutreten.
|
||||
commands.music.join.help.description = Tritt deinem Sprachkanal bei.
|
||||
commands.music.leave.success.title = Verbindung erfolgreich getrennt
|
||||
commands.music.leave.success.description = Ich habe die Verbindung zum Sprachkanal erfolgreich getrennt
|
||||
commands.music.leave.error.channel.title = Kein Kanal
|
||||
commands.music.leave.error.channel.description = Du musst im selben Sprachkanal wie der Bot sein.
|
||||
commands.music.leave.error.connected.tile = Nicht verbunden
|
||||
commands.music.leave.error.connected.description = Ich bin derzeit in keinem Sprachkanal auf diesem Server
|
||||
commands.music.leave.help.description = Verlässt einen Sprachkanal.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Versuche das Lied zu laden...
|
||||
commands.music.play.success.loading.title = %extra% Jetzt läuft %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Titel
|
||||
commands.music.play.success.author = Autor
|
||||
commands.music.play.success.length = Länge
|
||||
commands.music.play.success.tracks = Lieder
|
||||
commands.music.play.error.load.title = %extra% Laden fehlgeschlagen %extra%
|
||||
commands.music.play.error.load.description = Leider kann ich das angegebene Lied nicht laden
|
||||
commands.music.play.error.match.title = %extra% Keine Treffer %extra%
|
||||
commands.music.play.error.match.description = Ich kann keinen Song mit diesem Namen auf YouTube finden
|
||||
commands.music.play.success.unpause.title = Erfolgreich fortgesetzt
|
||||
commands.music.play.success.unpause.description = Ich habe erfolgreich den Song fortgesetzt.
|
||||
commands.music.play.error.connected.title = Kein Kanal
|
||||
commands.music.play.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um den Song fortzusetzen.
|
||||
commands.music.play.help.description = Spielt den angegebenen Song ab.
|
||||
commands.music.stop.success.title = Erfolgreich gestoppt
|
||||
commands.music.stop.success.description = Ich habe den Song erfolgreich gestoppt.
|
||||
commands.music.stop.error.connected.title = Kein Kanal
|
||||
commands.music.stop.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um ein Lied anzuhalten.
|
||||
commands.music.stop.help.description = Stoppt den Song.
|
||||
commands.music.info.success.title = Informationen zum Lied
|
||||
commands.music.info.error.title = Es wird kein Lied abgespielt
|
||||
commands.music.info.error.description = Ich spiele im Moment nichts
|
||||
commands.music.info.help.description = Zeigt Informationen über das abgespielte Lied.
|
||||
commands.music.queue.error.title = Keine Warteschlange
|
||||
commands.music.queue.error.description = Momentan sind keine Lieder in der Warteschlange
|
||||
commands.music.queue.success.title = Warteschlange %extra%
|
||||
commands.music.queue.success.description = Dies ist die Warteschlange\: \n %extra%
|
||||
commands.music.queue.help.description = Zeigt die Musik Warteschlange.
|
||||
commands.music.skip.success.title = Erfolgreich übersprungen
|
||||
commands.music.skip.success.description = Ich habe erfolgreich zum nächsten Song übersprungen
|
||||
commands.music.skip.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.skip.help.description = Überspringt den gerade abgespielten Song.
|
||||
commands.music.volume.success.title = Erfolgreich festgelegt
|
||||
commands.music.volume.success.description = Die Lautstärke wurde erfolgreich auf %extra% gesetzt
|
||||
commands.music.volume.error.int.title = Ungültige Nummer
|
||||
commands.music.volume.error.int.description = Die Lautstärke muss zwischen 1 und 200 liegen
|
||||
commands.music.volume.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.volume.help.description = Ändere die Lautstärke der Musik.
|
||||
commands.music.pause.success.title = Erfolgreich pausiert
|
||||
commands.music.pause.success.description = Ich habe den gespielten Song erfolgreich pausiert.
|
||||
commands.music.pause.error.paused.title = Bereits pausiert
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pausiere das abgespielte Lied.
|
||||
commands.music.loop.success.loop.title = Erfolgreich aktiviert
|
||||
commands.music.loop.success.loop.description = Ich wiederhole nun den gerade gespielten Song.
|
||||
commands.music.loop.success.unloop.title = Erfolgreich deaktiviert
|
||||
commands.music.loop.success.unloop.description = Ich werde den gerade gespielten Song nicht mehr wiederholen.
|
||||
commands.music.loop.error.connected.title = Kein Kanal
|
||||
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.loop.help.description = Wiederholt ein Lied/Warteschlange.
|
||||
commands.music.echo.success.title = Erfolgreich aktiviert
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF wird nicht angezeigt? Klicke hier
|
||||
commands.nsfw.img.error.title = Bild wird nicht angezeigt? Klicke hier
|
||||
commands.nsfw.anal.help.description = Zeigt einen zufälligen Anal GIF.
|
||||
commands.nsfw.bdsm.help.description = Zeigt ein zufälliges BDSM Bild
|
||||
commands.nsfw.blowjob.help.description = Zeigt ein zufälliges Blowjob Bild
|
||||
commands.nsfw.boobs.help.description = Zeigt einen zufälligen Boob GIF.
|
||||
commands.nsfw.cum.help.description = Zeigt einen zufälligen Cum GIF.
|
||||
commands.nsfw.erotic.help.description = Zeigt ein zufälliges Erotik Bild
|
||||
commands.nsfw.feet.help.description = Zeigt einen zufälligen Feet GIF.
|
||||
commands.nsfw.fingering.help.description = Zeigt einen zufälligen Finger GIF.
|
||||
commands.nsfw.linking.help.description = Zeigt ein zufälliges Leck GIF.
|
||||
commands.nsfw.porn.help.description = Zeigt einen zufälligen Porn GIF.
|
||||
commands.nsfw.pussy.help.description = Zeigt einen zufälligen Pussy GIF.
|
||||
commands.nsfw.randomporn.help.description = Zeigt ein völlig zufälliges Porno GIF.
|
||||
commands.nsfw.solo.help.description = Zeigt einen zufälligen Solo GIF.
|
||||
commands.nsfw.spank.help.description = Zeigt ein zufälliges spank GIF.
|
||||
commands.nsfw.trans.help.description = Zeigt ein zufälliges Trans Bild
|
||||
|
||||
commands.owner.eval.success.title = Eval-Befehl
|
||||
commands.owner.eval.success.input = Eingabe
|
||||
commands.owner.eval.success.output = Ausgabe
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Führt den angegebenen Code aus
|
||||
commands.owner.guildleave.success.title = Erfolgreich verlassen
|
||||
commands.owner.guildleave.success.description = Ich habe %extra% erfolgreich verlassen.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Startet den Bot neu.
|
||||
commands.owner.shutdown.success.title = Fährt herrunter
|
||||
commands.owner.shutdown.help.description = Schalte den Bot ab.
|
||||
commands.owner.test.success = TEST meine Freunde
|
||||
commands.owner.test.help.description = Nur ein kleiner Testbefehl
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
Hadder=Hadder
|
||||
error=Fehler
|
||||
none=Nicht angegeben
|
||||
success\!=Erfolgreich\!
|
||||
commands.fun.avatar.success.title=Avatar von %extra%
|
||||
commands.fun.avatar.error.title=Benutzer nicht gefunden
|
||||
commands.fun.avatar.error.description=Ich kann keinen Benutzer mit dieser ID finden\!
|
||||
commands.fun.avatar.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Bitte versuche es mit einem anderen Begriff erneut.
|
||||
commands.fun.gif.help.description=Sucht nach einem GIF auf Giphy.
|
||||
commands.fun.meme.success.title=Dein zufälliges Meme\:
|
||||
commands.fun.meme.api.error=Die Anfrage an die Meme-API konnte nicht verarbeitet werden. Bitte versuche es später erneut.
|
||||
commands.fun.meme.help.description=Sendet dir einen zufälligen Meme.
|
||||
commands.fun.clyde.help.description=Sendet eine Nachricht als Webhook namens Clyde.
|
||||
commands.general.about.success.title=Hadder - Info
|
||||
commands.general.about.success.description=Hadder ist ein Open-Source Discord Bot.
|
||||
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.help.description=Zeigt Informationen über Hadder.
|
||||
commands.general.equals.string.first.request=Bitte sende mir den ersten String.
|
||||
commands.general.equals.string.second.request=Bitte sende mir den zweiten String.
|
||||
commands.general.equals.string.equals.true=Ja\! Der erste String entspricht dem zweiten String\!
|
||||
commands.general.equals.string.equals.false=Ja, aber eigentlich nein. Das ist nicht dasselbe.
|
||||
commands.general.equals.string.first=Erster String\:
|
||||
commands.general.equals.string.second=Zweiter String\:
|
||||
commands.general.equals.string.result=Ergebnis\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Beschreibung\:**
|
||||
commands.general.help.usage=**Benutzung\:**
|
||||
commands.general.help.example=**Beispiel\:**
|
||||
commands.general.help.error.description=Ich brauche die Links Einbetten Berechtigung, um das Hilfe-Menü zu senden\!
|
||||
commands.general.help.help.description=Zeigt jeden Befehl an und erklärt seine Verwendung.
|
||||
commands.general.help.help.label=[Name des Commands]
|
||||
commands.general.invite.success.title=Lade mich ein\!
|
||||
commands.general.invite.success.description=[Lade mich hier ein\!]%extra%
|
||||
commands.general.invite.help.description=Zeigt den Einladungslink an, um Hadder auf deinen Server einzuladen.
|
||||
commands.general.ping.help.description=Zeigt den Ping zur Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback-Thema
|
||||
commands.misc.feedback.title.request.description=Bitte senden Sie mir das Thema des Feedbacks.
|
||||
commands.misc.feedback.description.request.title=Feedback Beschreibung
|
||||
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.help.description=Sendet Feedback direkt an die Entwickler.
|
||||
commands.misc.github.link.title=Verbinde dein GitHub Konto
|
||||
commands.misc.github.success.title=Informationen über %extra%
|
||||
commands.misc.github.success.bio=Biographie
|
||||
commands.misc.github.success.location=Standort
|
||||
commands.misc.github.success.website=Webseite
|
||||
commands.misc.github.success.repositories=Öffentliche Repositories
|
||||
commands.misc.github.success.gists=Öffentliche Gists
|
||||
commands.misc.github.success.followers=Abonnenten
|
||||
commands.misc.github.success.following=Folgt
|
||||
commands.misc.github.api.error.title=API-Fehler
|
||||
commands.misc.github.api.error.description=Die GitHub API könnte im Moment nicht verfügbar sein\!
|
||||
commands.misc.github.user.error.title=Benutzer existiert nicht
|
||||
commands.misc.github.user.error.description=Ich kann keinen Benutzer finden der so heißt\!
|
||||
commands.misc.github.connect.title=Verbinde dein GH Konto
|
||||
commands.misc.github.connect.description=[Bitte verbinde dein GitHub-Konto hier]%extra%
|
||||
commands.misc.github.help.description=Zeigt Informationen über ein GitHub Benutzerprofil an.
|
||||
commands.misc.screenshare.success.title=Hier ist deine URL, um deinen Bildschirm zu teilen
|
||||
commands.misc.screenshare.id.error.title=Warte. Das ist illegal.
|
||||
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.error.title=Bitte wähle einen Sprachkanal
|
||||
commands.misc.screenshare.channel.error.description=Es gibt mehr als einen Sprachkanal mit diesem Namen
|
||||
commands.misc.screenshare.number.error.title=Du hast eine falsche Nummer angegeben\!
|
||||
commands.misc.screenshare.number.error.description=Dies ist keine Zahl.
|
||||
commands.misc.screenshare.channel.existing.error=Warte ma'
|
||||
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.help.description=Zeigt dir den Link zum Teilen deines Bildschirms.
|
||||
commands.misc.serverstats.title=Serverstatistiken
|
||||
commands.misc.serverstats.description=Diese Nachricht enthält einige Informationen über `&extra&`
|
||||
commands.misc.serverstats.help.description=Zeigt Informationen über einen Server.
|
||||
commands.misc.profile.error.title=Nicht gefunden
|
||||
commands.misc.profile.error.description=Ich kann den angegebenen Benutzer nicht finden.
|
||||
commands.misc.profile.help.description=Zeigt einige Informationen über den angegebenen Benutzer.
|
||||
commands.misc.code.success.title=Informationen zum Einladungscode
|
||||
commands.misc.code.success.description=Diese Nachricht enthält einige Informationen über den angegebenen Einladungscode.
|
||||
commands.misc.code.error.title=Code nicht gefunden
|
||||
commands.misc.code.error.description=Ich kann den angegebenen Einladungscode nicht finden.
|
||||
commands.misc.code.help.description=Zeigt Informationen über einen Einladungs-Code.
|
||||
commands.misc.moveall.success.title=Erfolgreich verschoben
|
||||
commands.misc.moveall.success.description=Ich habe erfolgreich %extra% Mitglieder verschoben. Viel Spaß\!
|
||||
commands.misc.moveall.error.equals.title=Nicht zweimal
|
||||
commands.misc.moveall.error.equals.description=Der erste Sprachkanal gleicht dem zweiten. Du musst zwei verschiedene Sprachkanäle angeben.
|
||||
commands.misc.moveall.error.source.int.title=Ungültige ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Ungültige ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Verschiebt alle Benutzer des Ursprungskanals in den Zielkanal.
|
||||
commands.misc.corona.help.description=Zeigt die neuesten Statistiken von COVID-19
|
||||
commands.moderation.ban.success.title=Erfolgreich gebannt
|
||||
commands.moderation.ban.success.description=Ich habe %extra% erfolgreich gebannt
|
||||
commands.moderation.ban.error.title=Nicht möglich
|
||||
commands.moderation.ban.myself.error.description=Ich kann mich nicht selbst bannen\!
|
||||
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.help.description=Bannt einen oder mehrere Benutzer vom Server.
|
||||
commands.moderation.clear.all.success.title=Erfolgreich gelöscht
|
||||
commands.moderation.clear.all.success.description=Ich habe erfolgreich %extra% Nachrichten gelöscht.
|
||||
commands.moderation.clear.number.error.title=Ungültige Nummer
|
||||
commands.moderation.clear.number.error.description=Sie müssen eine Zahl zwischen 1 und 99 wählen\!
|
||||
commands.moderation.clear.success.title=Erfolgreich gelöscht
|
||||
commands.moderation.clear.success.description.singular=Nachricht erfolgreich gelöscht.
|
||||
commands.moderation.clear.success.description.plural=Ich habe erfolgreich %extra% Nachrichten gelöscht.
|
||||
commands.moderation.clear.message.error.title=Keine Nachrichten\!
|
||||
commands.moderation.clear.message.error.description=Es gibt keine Nachrichten in diesem Kanal.
|
||||
commands.moderation.clear.help.description=Löscht die angegebene Anzahl von Nachrichten.
|
||||
commands.moderation.prefix.success.title=Erfolgreich festgelegt
|
||||
commands.moderation.prefix.success.description=Ich habe erfolgreich den neuen Prefix für den Server auf `%extra% ` gesetzt.
|
||||
commands.moderation.prefix.error.description=Der Prefix darf nicht **"** enthalten
|
||||
commands.moderation.prefix.help.description=Legt den Guild-Prefix fest.
|
||||
commands.moderation.invitedetect.activate.success.title=Erfolgreich aktiviert
|
||||
commands.moderation.invitedetect.activate.success.description=Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server aktiviert.
|
||||
commands.moderation.invitedetect.activate.error.title=Bereits aktiviert
|
||||
commands.moderation.invitedetect.activate.error.description=Die Erkennung von Einladungs-Links ist auf diesem Server bereits aktiviert.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Erfolgreich deaktiviert
|
||||
commands.moderation.invitedetect.deactivate.success.description=Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server deaktiviert.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Bereits deaktiviert
|
||||
commands.moderation.invitedetect.deactivate.error.description=Die Erkennung von Einladungs-Links ist auf diesem Server bereits deaktiviert.
|
||||
commands.moderation.invitedetect.help.description=Aktiviert oder deaktiviert die Discord Einladungserkennung.
|
||||
commands.moderation.kick.success.title=%extra% Erfolgreich gekickt %extra%
|
||||
commands.moderation.kick.success.description=Ich habe %extra% erfolgreich gekickt.
|
||||
commands.moderation.kick.error.title=Nicht möglich
|
||||
commands.moderation.kick.myself.error.description=Ich kann mich nicht selbst kicken\!
|
||||
commands.moderation.kick.yourself.error.description=Du kannst dich nicht selbst kicken.
|
||||
commands.moderation.kick.mass.success.description=Ich habe %extra% Mitglieder erfolgreich gekickt\!
|
||||
commands.moderation.kick.help.description=Wirft einen oder mehrere Benutzer vom Server.
|
||||
commands.moderation.kick.masskick.success.description=Ich habe %extra% Mitglieder erfolgreich gekickt.
|
||||
commands.moderation.nick.success.title=Erfolgreich umbenannt
|
||||
commands.moderation.nick.success.description=Ich habe %extra% erfolgreich umbenannt.
|
||||
commands.moderation.nick.myself.success.description=Ich habe meinen Spitznamen erfolgreich geändert.
|
||||
commands.moderation.nick.massnick.success.description=Ich habe erfolgreich %extra% Mitglieder umbenannt.
|
||||
commands.moderation.nick.help.description=Benennt einen oder mehrere Benutzer um.
|
||||
commands.moderation.regionchange.regions.title=Alle Regionen
|
||||
commands.moderation.regionchange.success.title=Region erfolgreich gesetzt
|
||||
commands.moderation.regionchange.success.description=Ich habe die neue Serverregion erfolgreich zu %extra% geändert.
|
||||
commands.moderation.regionchange.help.description=Ändert die Server Region zu gesperrten Regionen.
|
||||
commands.moderation.role.add.success.title=Rolle(n) erfolgreich hinzugefügt
|
||||
commands.moderation.role.add.success.description=Ich habe %extra% Rollen zu %extra_two% Mitgliedern hinzugefügt.
|
||||
commands.moderation.role.remove.success.title=Rolle(n) erfolgreich entfernt
|
||||
commands.moderation.role.remove.success.description=Ich habe %extra% Rollen von %extra_two% Mitgliedern entfernt.
|
||||
commands.moderation.role.help.description=Fügt und entfernt eine oder mehrere Rolle(n) von einem oder mehreren Benutzer(n) hinzu
|
||||
commands.moderation.rules.setup.title=Regeln einrichten
|
||||
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.channel.error.title=Kanal konnte nicht gefunden werden
|
||||
commands.moderation.rules.channel.error.description=Ich kann den angegebenen Kanal nicht finden. Bitte starte das Setup erneut.
|
||||
commands.moderation.rules.rules.title=Regelnachricht
|
||||
commands.moderation.rules.rules.description=Der Kanal wurde erfolgreich auf %extra% gesetzt. Bitte senden Sie mir jetzt die Regeln.
|
||||
commands.moderation.rules.role.title=Rolle zum Hinzufügen
|
||||
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.role.error.title=Rolle existiert nicht
|
||||
commands.moderation.rules.role.error.description=Die angegebene Rolle existiert auf diesem Server nicht.
|
||||
commands.moderation.rules.role.permission.error.title=Keine Berechtigung
|
||||
commands.moderation.rules.role.permission.error.description=Du kannst diese Rolle nicht auswählen, weil du keinen Zugriff auf sie hast.
|
||||
commands.moderation.rules.guild.error.title=Falsche Guild
|
||||
commands.moderation.rules.guild.error.description=Der erwähnte Kanal muss auf diesem Server sein\!
|
||||
commands.moderation.rules.emote.accept.title=Benutzerdefiniertes Zustimmungsemote
|
||||
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.emote.decline.title=Benutzerdefiniertes Ablehnungsemote
|
||||
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.emote.error.access.description=Ich kann auf die benutzerdefinierten Emote(s) nicht zugreifen.
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes sind gleich
|
||||
commands.moderation.rules.emote.error.equal.description=Die zwei angegebenen Emotes sind gleich.
|
||||
commands.moderation.rules.emoji.decline.description=Das erste Emote wurde erfolgreich festgelegt. Bitte sende mir jetzt das Ablehnungsemote.
|
||||
commands.moderation.rules.emoji.error.description=Das angegebene Emote kann nicht verwendet werden.
|
||||
commands.moderation.rules.success.title=Regeln erfolgreich festgelegt
|
||||
commands.moderation.rules.success.description=Ich habe die Regeln erfolgreich in %extra% gesendet.
|
||||
commands.moderation.rules.error.message.title=Keine Berechtigung
|
||||
commands.moderation.rules.error.message.description=Ich kann keine Nachrichten in dem angegebenen Kanal schreiben
|
||||
commands.moderation.rules.error.permission.title=Keine Berechtigung
|
||||
commands.moderation.rules.error.permission.description=Um diesen Befehl auszuführen, benötige ich die `Rollen verwalten` Berechtigung.
|
||||
commands.moderation.rules.error.interact.title=Kein Zugriff
|
||||
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.help.description=Richte Regeln auf deinem Discord Server ein
|
||||
commands.moderation.starboard.success.title=Kanal erfolgreich festgelegt\!
|
||||
commands.moderation.starboard.help.description=Legt den Kanal für das Starboard fest.
|
||||
commands.moderation.editrules.channel.title=Kanal der Regeln
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Kanal konnte nicht gefunden werden
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=Keine Regelnachricht
|
||||
commands.moderation.editrules.channel.message.error.description=Ich kann die Regelnachricht im angegebenen Kanal nicht finden.
|
||||
commands.moderation.editrules.message.title=Neue Nachricht
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=Keine Regeln
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Erfolgreich geändert
|
||||
commands.moderation.editrules.success.description=Ich habe erfolgreich die Regeln geändert
|
||||
commands.moderation.editrules.help.description=Bearbeitet die Regelnachricht.
|
||||
commands.music.bass.error.connected.title=Kein Kanal
|
||||
commands.music.bass.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um den Bass zu ändern.
|
||||
commands.music.bass.help.description=Ändere den Bass für den Song, welcher gerade abgespielt wird.
|
||||
commands.music.join.success.title=Erfolgreich verbunden
|
||||
commands.music.join.success.description=Ich habe mich erfolgreich mit %extra% verbunden.
|
||||
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.join.error.connecting.trying.title=Verbindung wird bereits hergestellt
|
||||
commands.music.join.error.connecting.trying.description=Hadder versucht bereits, sich zu verbinden. Bitte warte einen Moment
|
||||
commands.music.join.error.channel.title=Kein Sprachkanal
|
||||
commands.music.join.error.channel.description=Du befindest dich nicht in einem Sprachkanal.
|
||||
commands.music.join.error.permission.title=Keine Berechtigung
|
||||
commands.music.join.error.permission.description=Ich bin nicht Berechtigt deinem Sprachkanal beizutreten.
|
||||
commands.music.join.help.description=Tritt deinem Sprachkanal bei.
|
||||
commands.music.leave.success.title=Verbindung erfolgreich getrennt
|
||||
commands.music.leave.success.description=Ich habe die Verbindung zum Sprachkanal erfolgreich getrennt
|
||||
commands.music.leave.error.channel.title=Kein Kanal
|
||||
commands.music.leave.error.channel.description=Du musst im selben Sprachkanal wie der Bot sein.
|
||||
commands.music.leave.error.connected.tile=Nicht verbunden
|
||||
commands.music.leave.error.connected.description=Ich bin derzeit in keinem Sprachkanal auf diesem Server
|
||||
commands.music.leave.help.description=Verlässt einen Sprachkanal.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Versuche das Lied zu laden...
|
||||
commands.music.play.success.loading.title=%extra% Jetzt läuft %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Titel
|
||||
commands.music.play.success.author=Autor
|
||||
commands.music.play.success.length=Länge
|
||||
commands.music.play.success.tracks=Lieder
|
||||
commands.music.play.error.load.title=%extra% Laden fehlgeschlagen %extra%
|
||||
commands.music.play.error.load.description=Leider kann ich das angegebene Lied nicht laden
|
||||
commands.music.play.error.match.title=%extra% Keine Treffer %extra%
|
||||
commands.music.play.error.match.description=Ich kann keinen Song mit diesem Namen auf YouTube finden
|
||||
commands.music.play.success.unpause.title=Erfolgreich fortgesetzt
|
||||
commands.music.play.success.unpause.description=Ich habe erfolgreich den Song fortgesetzt.
|
||||
commands.music.play.error.connected.title=Kein Kanal
|
||||
commands.music.play.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um den Song fortzusetzen.
|
||||
commands.music.play.help.description=Spielt den angegebenen Song ab.
|
||||
commands.music.stop.success.title=Erfolgreich gestoppt
|
||||
commands.music.stop.success.description=Ich habe den Song erfolgreich gestoppt.
|
||||
commands.music.stop.error.connected.title=Kein Kanal
|
||||
commands.music.stop.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um ein Lied anzuhalten.
|
||||
commands.music.stop.help.description=Stoppt den Song.
|
||||
commands.music.info.success.title=Informationen zum Lied
|
||||
commands.music.info.error.title=Es wird kein Lied abgespielt
|
||||
commands.music.info.error.description=Ich spiele im Moment nichts
|
||||
commands.music.info.help.description=Zeigt Informationen über das abgespielte Lied.
|
||||
commands.music.queue.error.title=Keine Warteschlange
|
||||
commands.music.queue.error.description=Momentan sind keine Lieder in der Warteschlange
|
||||
commands.music.queue.success.title=Warteschlange %extra%
|
||||
commands.music.queue.success.description=Dies ist die Warteschlange\: \n %extra%
|
||||
commands.music.queue.help.description=Zeigt die Musik Warteschlange.
|
||||
commands.music.skip.success.title=Erfolgreich übersprungen
|
||||
commands.music.skip.success.description=Ich habe erfolgreich zum nächsten Song übersprungen
|
||||
commands.music.skip.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.skip.help.description=Überspringt den gerade abgespielten Song.
|
||||
commands.music.volume.success.title=Erfolgreich festgelegt
|
||||
commands.music.volume.success.description=Die Lautstärke wurde erfolgreich auf %extra% gesetzt
|
||||
commands.music.volume.error.int.title=Ungültige Nummer
|
||||
commands.music.volume.error.int.description=Die Lautstärke muss zwischen 1 und 200 liegen
|
||||
commands.music.volume.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.volume.help.description=Ändere die Lautstärke der Musik.
|
||||
commands.music.pause.success.title=Erfolgreich pausiert
|
||||
commands.music.pause.success.description=Ich habe den gespielten Song erfolgreich pausiert.
|
||||
commands.music.pause.error.paused.title=Bereits pausiert
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pausiere das abgespielte Lied.
|
||||
commands.music.loop.success.loop.title=Erfolgreich aktiviert
|
||||
commands.music.loop.success.loop.description=Ich wiederhole nun den gerade gespielten Song.
|
||||
commands.music.loop.success.unloop.title=Erfolgreich deaktiviert
|
||||
commands.music.loop.success.unloop.description=Ich werde den gerade gespielten Song nicht mehr wiederholen.
|
||||
commands.music.loop.error.connected.title=Kein Kanal
|
||||
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.loop.help.description=Wiederholt ein Lied/Warteschlange.
|
||||
commands.music.echo.success.title=Erfolgreich aktiviert
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF wird nicht angezeigt? Klicke hier
|
||||
commands.nsfw.img.error.title=Bild wird nicht angezeigt? Klicke hier
|
||||
commands.nsfw.anal.help.description=Zeigt einen zufälligen Anal GIF.
|
||||
commands.nsfw.bdsm.help.description=Zeigt ein zufälliges BDSM Bild
|
||||
commands.nsfw.blowjob.help.description=Zeigt ein zufälliges Blowjob Bild
|
||||
commands.nsfw.boobs.help.description=Zeigt einen zufälligen Boob GIF.
|
||||
commands.nsfw.cum.help.description=Zeigt einen zufälligen Cum GIF.
|
||||
commands.nsfw.erotic.help.description=Zeigt ein zufälliges Erotik Bild
|
||||
commands.nsfw.feet.help.description=Zeigt einen zufälligen Feet GIF.
|
||||
commands.nsfw.fingering.help.description=Zeigt einen zufälligen Finger GIF.
|
||||
commands.nsfw.linking.help.description=Zeigt ein zufälliges Leck GIF.
|
||||
commands.nsfw.porn.help.description=Zeigt einen zufälligen Porn GIF.
|
||||
commands.nsfw.pussy.help.description=Zeigt einen zufälligen Pussy GIF.
|
||||
commands.nsfw.randomporn.help.description=Zeigt ein völlig zufälliges Porno GIF.
|
||||
commands.nsfw.solo.help.description=Zeigt einen zufälligen Solo GIF.
|
||||
commands.nsfw.spank.help.description=Zeigt ein zufälliges spank GIF.
|
||||
commands.nsfw.trans.help.description=Zeigt ein zufälliges Trans Bild
|
||||
commands.owner.eval.success.title=Eval-Befehl
|
||||
commands.owner.eval.success.input=Eingabe
|
||||
commands.owner.eval.success.output=Ausgabe
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Führt den angegebenen Code aus
|
||||
commands.owner.guildleave.success.title=Erfolgreich verlassen
|
||||
commands.owner.guildleave.success.description=Ich habe %extra% erfolgreich verlassen.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Startet den Bot neu.
|
||||
commands.owner.shutdown.success.title=Fährt herrunter
|
||||
commands.owner.shutdown.help.description=Schalte den Bot ab.
|
||||
commands.owner.test.success=TEST meine Freunde
|
||||
commands.owner.test.help.description=Nur ein kleiner Testbefehl
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -13,321 +13,311 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Error
|
||||
none = None
|
||||
success\! = Success\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar of %extra%
|
||||
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.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Please try again with another term.
|
||||
commands.fun.gif.help.description = Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title = Your random meme\:
|
||||
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description = Sends you a random meme.
|
||||
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - About
|
||||
commands.general.about.success.description = Hadder is an open source Discord bot.
|
||||
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.help.description = Shows information about Hadder.
|
||||
commands.general.equals.string.first.request = Please send me the first String.
|
||||
commands.general.equals.string.second.request = Please send me the second String.
|
||||
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first = First string\:
|
||||
commands.general.equals.string.second = Second string\:
|
||||
commands.general.equals.string.result = Result\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Description\:**
|
||||
commands.general.help.usage = **Usage\:**
|
||||
commands.general.help.example = **Example\:**
|
||||
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description = Shows each command and explains its usage.
|
||||
commands.general.help.help.label = [CommandName]
|
||||
commands.general.invite.success.title = Invite me\!
|
||||
commands.general.invite.success.description = [Invite me here\!]%extra%
|
||||
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description = Shows the ping to the Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback Topic
|
||||
commands.misc.feedback.title.request.description = Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title = Feedback Description
|
||||
commands.misc.feedback.description.request.description = Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title = Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description = Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title = Link your GitHub Account
|
||||
commands.misc.github.success.title = Information about %extra%
|
||||
commands.misc.github.success.bio = User bio
|
||||
commands.misc.github.success.location = Location
|
||||
commands.misc.github.success.website = Website
|
||||
commands.misc.github.success.repositories = Public repositories
|
||||
commands.misc.github.success.gists = Public gists
|
||||
commands.misc.github.success.followers = Followers
|
||||
commands.misc.github.success.following = Following
|
||||
commands.misc.github.api.error.title = API error
|
||||
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title = User doesn't exist
|
||||
commands.misc.github.user.error.description = I can not find a user named like this\!
|
||||
commands.misc.github.connect.title = Connect your GH account
|
||||
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description = Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title = Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title = Wait. That's illegal.
|
||||
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.error.title = Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description = There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title = You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description = This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error = Hol' up
|
||||
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.help.description = Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title = Serverstats
|
||||
commands.misc.serverstats.description = This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description = Shows information about a server.
|
||||
commands.misc.profile.error.title = Not found
|
||||
commands.misc.profile.error.description = I can't find the specified user.
|
||||
commands.misc.profile.help.description = Shows some information about the specified user.
|
||||
commands.misc.code.success.title = Invite code information
|
||||
commands.misc.code.success.description = This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title = Code not found
|
||||
commands.misc.code.error.description = I can't find the specified invite code.
|
||||
commands.misc.code.help.description = Shows information about a invite code.
|
||||
commands.misc.moveall.success.title = Successfully moved
|
||||
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title = Not twice
|
||||
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title = Invalid ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Invalid ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description = Shows the newest stats of COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Successfully banned
|
||||
commands.moderation.ban.success.description = I successfully baned %extra%
|
||||
commands.moderation.ban.error.title = Not possible
|
||||
commands.moderation.ban.myself.error.description = I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description = Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title = Successfully deleted
|
||||
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title = Invalid number
|
||||
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title = Successfully cleared
|
||||
commands.moderation.clear.success.description.singular = Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title = No messages\!
|
||||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title = Already activated
|
||||
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title = %extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description = I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title = Not possible
|
||||
commands.moderation.kick.myself.error.description = I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description = You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description = Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title = %extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description = I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description = I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description = Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title = All regions
|
||||
commands.moderation.regionchange.success.title = Successfully set region
|
||||
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title = Successfully added role(s)
|
||||
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title = Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title = Set up rules
|
||||
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title = Channel not found
|
||||
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title = Rules message
|
||||
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title = Role to assign/remove
|
||||
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.role.error.title = Role does not exist
|
||||
commands.moderation.rules.role.error.description = The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title = No permission
|
||||
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title = Wrong Guild
|
||||
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title = Custom Accept Emote
|
||||
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.emote.decline.title = Custom Decline Emote
|
||||
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.emote.error.access.description = I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description = The given emote can't be used.
|
||||
commands.moderation.rules.success.title = Successfully set the rules
|
||||
commands.moderation.rules.success.description = I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title = Can't write messages
|
||||
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title = No permission
|
||||
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title = Can't interact
|
||||
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.help.description = Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title = Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description = Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title = Rules channel
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = No rules message
|
||||
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title = New message
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = No rules
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Successfully changed
|
||||
commands.moderation.editrules.success.description = I successfully changed the rules
|
||||
commands.moderation.editrules.help.description = Edits the rules message.
|
||||
|
||||
commands.music.bass.error.connected.title = No channel
|
||||
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.bass.help.description = Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title = Successfully connected
|
||||
commands.music.join.success.description = I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title = Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title = No Voice Channel
|
||||
commands.music.join.error.channel.description = You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title = No permission
|
||||
commands.music.join.error.permission.description = I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description = Joins your voice channel.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Trying to load the song...
|
||||
commands.music.play.success.loading.title = %extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Title
|
||||
commands.music.play.success.author = Author
|
||||
commands.music.play.success.length = Length
|
||||
commands.music.play.success.tracks = Tracks
|
||||
commands.music.play.error.load.title = %extra% Load failed %extra%
|
||||
commands.music.play.error.load.description = Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title = %extra% No matches %extra%
|
||||
commands.music.play.error.match.description = I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title = Successfully continued
|
||||
commands.music.play.success.unpause.description = I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title = No channel
|
||||
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.help.description = Plays the specified song.
|
||||
commands.music.stop.success.title = Successfully stopped
|
||||
commands.music.stop.success.description = I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title = No channel
|
||||
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description = Stops the song.
|
||||
commands.music.info.success.title = Track info
|
||||
commands.music.info.error.title = No playing track
|
||||
commands.music.info.error.description = I am not playing anything at the moment
|
||||
commands.music.info.help.description = Shows information about the playing song.
|
||||
commands.music.queue.error.title = No queue
|
||||
commands.music.queue.error.description = There are no queued songs at the moment
|
||||
commands.music.queue.success.title = Queue %extra%
|
||||
commands.music.queue.success.description = This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description = Shows the music queue.
|
||||
commands.music.skip.success.title = Successfully skipped
|
||||
commands.music.skip.success.description = I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description = Skips the currently playing song.
|
||||
commands.music.volume.success.title = Successfully set
|
||||
commands.music.volume.success.description = I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title = Invalid number
|
||||
commands.music.volume.error.int.description = The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description = Change the volume of the music.
|
||||
commands.music.pause.success.title = Successfully paused
|
||||
commands.music.pause.success.description = I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title = Already paused
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pause the playing song.
|
||||
commands.music.loop.success.loop.title = Successfully activated
|
||||
commands.music.loop.success.loop.description = I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title = Successfully deactivated
|
||||
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title = No channel
|
||||
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.loop.help.description = Repeats a song/queue.
|
||||
commands.music.echo.success.title = Successfully activated
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF not showing? Click here
|
||||
commands.nsfw.img.error.title = Image not showing? Click here
|
||||
commands.nsfw.anal.help.description = Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description = Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description = Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description = Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description = Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description = Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description = Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description = Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description = Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description = Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description = Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description = Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description = Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description = Shows a random trans picture
|
||||
|
||||
commands.owner.eval.success.title = Eval Command
|
||||
commands.owner.eval.success.input = Input
|
||||
commands.owner.eval.success.output = Output
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Execute the given code
|
||||
commands.owner.guildleave.success.title = Successfully left
|
||||
commands.owner.guildleave.success.description = I successfully left %extra%.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Restart the bot
|
||||
commands.owner.shutdown.success.title = Shutdown
|
||||
commands.owner.shutdown.help.description = Shuts the Bot down
|
||||
commands.owner.test.success = TEST my friends
|
||||
commands.owner.test.help.description = Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.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.
|
||||
Hadder=Hadder
|
||||
error=Error
|
||||
none=None
|
||||
success\!=Success\!
|
||||
commands.fun.avatar.success.title=Avatar of %extra%
|
||||
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.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Please try again with another term.
|
||||
commands.fun.gif.help.description=Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title=Your random meme\:
|
||||
commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description=Sends you a random meme.
|
||||
commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
|
||||
commands.general.about.success.title=Hadder - About
|
||||
commands.general.about.success.description=Hadder is an open source Discord bot.
|
||||
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.help.description=Shows information about Hadder.
|
||||
commands.general.equals.string.first.request=Please send me the first String.
|
||||
commands.general.equals.string.second.request=Please send me the second String.
|
||||
commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first=First string\:
|
||||
commands.general.equals.string.second=Second string\:
|
||||
commands.general.equals.string.result=Result\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Description\:**
|
||||
commands.general.help.usage=**Usage\:**
|
||||
commands.general.help.example=**Example\:**
|
||||
commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description=Shows each command and explains its usage.
|
||||
commands.general.help.help.label=[CommandName]
|
||||
commands.general.invite.success.title=Invite me\!
|
||||
commands.general.invite.success.description=[Invite me here\!]%extra%
|
||||
commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description=Shows the ping to the Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback Topic
|
||||
commands.misc.feedback.title.request.description=Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title=Feedback Description
|
||||
commands.misc.feedback.description.request.description=Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title=Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description=Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title=Link your GitHub Account
|
||||
commands.misc.github.success.title=Information about %extra%
|
||||
commands.misc.github.success.bio=User bio
|
||||
commands.misc.github.success.location=Location
|
||||
commands.misc.github.success.website=Website
|
||||
commands.misc.github.success.repositories=Public repositories
|
||||
commands.misc.github.success.gists=Public gists
|
||||
commands.misc.github.success.followers=Followers
|
||||
commands.misc.github.success.following=Following
|
||||
commands.misc.github.api.error.title=API error
|
||||
commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title=User doesn't exist
|
||||
commands.misc.github.user.error.description=I can not find a user named like this\!
|
||||
commands.misc.github.connect.title=Connect your GH account
|
||||
commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description=Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title=Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title=Wait. That's illegal.
|
||||
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.error.title=Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description=There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title=You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description=This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error=Hol' up
|
||||
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.help.description=Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title=Serverstats
|
||||
commands.misc.serverstats.description=This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description=Shows information about a server.
|
||||
commands.misc.profile.error.title=Not found
|
||||
commands.misc.profile.error.description=I can't find the specified user.
|
||||
commands.misc.profile.help.description=Shows some information about the specified user.
|
||||
commands.misc.code.success.title=Invite code information
|
||||
commands.misc.code.success.description=This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title=Code not found
|
||||
commands.misc.code.error.description=I can't find the specified invite code.
|
||||
commands.misc.code.help.description=Shows information about a invite code.
|
||||
commands.misc.moveall.success.title=Successfully moved
|
||||
commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title=Not twice
|
||||
commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title=Invalid ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Invalid ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description=Shows the newest stats of COVID-19
|
||||
commands.moderation.ban.success.title=Successfully banned
|
||||
commands.moderation.ban.success.description=I successfully baned %extra%
|
||||
commands.moderation.ban.error.title=Not possible
|
||||
commands.moderation.ban.myself.error.description=I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description=You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description=I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description=Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title=Successfully deleted
|
||||
commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title=Invalid number
|
||||
commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title=Successfully cleared
|
||||
commands.moderation.clear.success.description.singular=Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title=No messages\!
|
||||
commands.moderation.clear.message.error.description=There are no messages in this channel.
|
||||
commands.moderation.clear.help.description=Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title=%extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description=The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description=Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title=Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title=Already activated
|
||||
commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description=I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title=Not possible
|
||||
commands.moderation.kick.myself.error.description=I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description=You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description=Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description=I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description=I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description=Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title=All regions
|
||||
commands.moderation.regionchange.success.title=Successfully set region
|
||||
commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description=Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title=Successfully added role(s)
|
||||
commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title=Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title=Set up rules
|
||||
commands.moderation.rules.setup.description=Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title=Channel not found
|
||||
commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title=Rules message
|
||||
commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title=Role to assign/remove
|
||||
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.role.error.title=Role does not exist
|
||||
commands.moderation.rules.role.error.description=The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title=No permission
|
||||
commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title=Wrong Guild
|
||||
commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title=Custom Accept Emote
|
||||
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.emote.decline.title=Custom Decline Emote
|
||||
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.emote.error.access.description=I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description=The given emote can't be used.
|
||||
commands.moderation.rules.success.title=Successfully set the rules
|
||||
commands.moderation.rules.success.description=I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title=Can't write messages
|
||||
commands.moderation.rules.error.message.description=I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title=No permission
|
||||
commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title=Can't interact
|
||||
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.help.description=Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title=Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description=Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title=Rules channel
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=No rules message
|
||||
commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title=New message
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=No rules
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Successfully changed
|
||||
commands.moderation.editrules.success.description=I successfully changed the rules
|
||||
commands.moderation.editrules.help.description=Edits the rules message.
|
||||
commands.music.bass.error.connected.title=No channel
|
||||
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.bass.help.description=Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title=Successfully connected
|
||||
commands.music.join.success.description=I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title=Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title=No Voice Channel
|
||||
commands.music.join.error.channel.description=You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title=No permission
|
||||
commands.music.join.error.permission.description=I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description=Joins your voice channel.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Trying to load the song...
|
||||
commands.music.play.success.loading.title=%extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Title
|
||||
commands.music.play.success.author=Author
|
||||
commands.music.play.success.length=Length
|
||||
commands.music.play.success.tracks=Tracks
|
||||
commands.music.play.error.load.title=%extra% Load failed %extra%
|
||||
commands.music.play.error.load.description=Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title=%extra% No matches %extra%
|
||||
commands.music.play.error.match.description=I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title=Successfully continued
|
||||
commands.music.play.success.unpause.description=I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title=No channel
|
||||
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.help.description=Plays the specified song.
|
||||
commands.music.stop.success.title=Successfully stopped
|
||||
commands.music.stop.success.description=I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title=No channel
|
||||
commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description=Stops the song.
|
||||
commands.music.info.success.title=Track info
|
||||
commands.music.info.error.title=No playing track
|
||||
commands.music.info.error.description=I am not playing anything at the moment
|
||||
commands.music.info.help.description=Shows information about the playing song.
|
||||
commands.music.queue.error.title=No queue
|
||||
commands.music.queue.error.description=There are no queued songs at the moment
|
||||
commands.music.queue.success.title=Queue %extra%
|
||||
commands.music.queue.success.description=This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description=Shows the music queue.
|
||||
commands.music.skip.success.title=Successfully skipped
|
||||
commands.music.skip.success.description=I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description=Skips the currently playing song.
|
||||
commands.music.volume.success.title=Successfully set
|
||||
commands.music.volume.success.description=I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title=Invalid number
|
||||
commands.music.volume.error.int.description=The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description=Change the volume of the music.
|
||||
commands.music.pause.success.title=Successfully paused
|
||||
commands.music.pause.success.description=I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title=Already paused
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pause the playing song.
|
||||
commands.music.loop.success.loop.title=Successfully activated
|
||||
commands.music.loop.success.loop.description=I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title=Successfully deactivated
|
||||
commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title=No channel
|
||||
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.loop.help.description=Repeats a song/queue.
|
||||
commands.music.echo.success.title=Successfully activated
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF not showing? Click here
|
||||
commands.nsfw.img.error.title=Image not showing? Click here
|
||||
commands.nsfw.anal.help.description=Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description=Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description=Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description=Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description=Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description=Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description=Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description=Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description=Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description=Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description=Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description=Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description=Shows a random trans picture
|
||||
commands.owner.eval.success.title=Eval Command
|
||||
commands.owner.eval.success.input=Input
|
||||
commands.owner.eval.success.output=Output
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Execute the given code
|
||||
commands.owner.guildleave.success.title=Successfully left
|
||||
commands.owner.guildleave.success.description=I successfully left %extra%.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Restart the bot
|
||||
commands.owner.shutdown.success.title=Shutdown
|
||||
commands.owner.shutdown.help.description=Shuts the Bot down
|
||||
commands.owner.test.success=TEST my friends
|
||||
commands.owner.test.help.description=Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.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.
|
||||
|
|
|
|||
|
|
@ -13,326 +13,316 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Error
|
||||
none = None
|
||||
success\! = Success\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar of %extra%
|
||||
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.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Please try again with another term.
|
||||
commands.fun.gif.help.description = Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title = Your random meme\:
|
||||
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description = Sends you a random meme.
|
||||
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - About
|
||||
commands.general.about.success.description = Hadder is an open source Discord bot.
|
||||
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.help.description = Shows information about Hadder.
|
||||
commands.general.equals.string.first.request = Please send me the first String.
|
||||
commands.general.equals.string.second.request = Please send me the second String.
|
||||
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first = First string\:
|
||||
commands.general.equals.string.second = Second string\:
|
||||
commands.general.equals.string.result = Result\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Description\:**
|
||||
commands.general.help.usage = **Usage\:**
|
||||
commands.general.help.example = **Example\:**
|
||||
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description = Shows each command and explains its usage.
|
||||
commands.general.help.help.label = [CommandName]
|
||||
commands.general.invite.success.title = Invite me\!
|
||||
commands.general.invite.success.description = [Invite me here\!]%extra%
|
||||
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description = Shows the ping to the Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback Topic
|
||||
commands.misc.feedback.title.request.description = Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title = Feedback Description
|
||||
commands.misc.feedback.description.request.description = Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title = Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description = Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title = Link your GitHub Account
|
||||
commands.misc.github.success.title = Information about %extra%
|
||||
commands.misc.github.success.bio = User bio
|
||||
commands.misc.github.success.location = Location
|
||||
commands.misc.github.success.website = Website
|
||||
commands.misc.github.success.repositories = Public repositories
|
||||
commands.misc.github.success.gists = Public gists
|
||||
commands.misc.github.success.followers = Followers
|
||||
commands.misc.github.success.following = Following
|
||||
commands.misc.github.api.error.title = API error
|
||||
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title = User doesn't exist
|
||||
commands.misc.github.user.error.description = I can not find a user named like this\!
|
||||
commands.misc.github.connect.title = Connect your GH account
|
||||
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description = Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title = Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title = Wait. That's illegal.
|
||||
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.error.title = Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description = There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title = You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description = This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error = Hol' up
|
||||
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.help.description = Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title = Serverstats
|
||||
commands.misc.serverstats.description = This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description = Shows information about a server.
|
||||
commands.misc.profile.error.title = Not found
|
||||
commands.misc.profile.error.description = I can't find the specified user.
|
||||
commands.misc.profile.help.description = Shows some information about the specified user.
|
||||
commands.misc.code.success.title = Invite code information
|
||||
commands.misc.code.success.description = This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title = Code not found
|
||||
commands.misc.code.error.description = I can't find the specified invite code.
|
||||
commands.misc.code.help.description = Shows information about a invite code.
|
||||
commands.misc.moveall.success.title = Successfully moved
|
||||
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title = Not twice
|
||||
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title = Invalid ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Invalid ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description = Shows the newest stats of COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Successfully banned
|
||||
commands.moderation.ban.success.description = I successfully baned %extra%
|
||||
commands.moderation.ban.error.title = Not possible
|
||||
commands.moderation.ban.myself.error.description = I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description = Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title = Successfully deleted
|
||||
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title = Invalid number
|
||||
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title = Successfully cleared
|
||||
commands.moderation.clear.success.description.singular = Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title = No messages\!
|
||||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title = Already activated
|
||||
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title = %extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description = I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title = Not possible
|
||||
commands.moderation.kick.myself.error.description = I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description = You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description = Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title = %extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description = I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description = I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description = Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title = All regions
|
||||
commands.moderation.regionchange.success.title = Successfully set region
|
||||
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title = Successfully added role(s)
|
||||
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title = Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title = Set up rules
|
||||
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title = Channel not found
|
||||
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title = Rules message
|
||||
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title = Role to assign/remove
|
||||
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.role.error.title = Role does not exist
|
||||
commands.moderation.rules.role.error.description = The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title = No permission
|
||||
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title = Wrong Guild
|
||||
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title = Custom Accept Emote
|
||||
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.emote.decline.title = Custom Decline Emote
|
||||
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.emote.error.access.description = I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description = The given emote can't be used.
|
||||
commands.moderation.rules.success.title = Successfully set the rules
|
||||
commands.moderation.rules.success.description = I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title = Can't write messages
|
||||
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title = No permission
|
||||
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title = Can't interact
|
||||
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.help.description = Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title = Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description = Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title = Rules channel
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = No rules message
|
||||
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title = New message
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = No rules
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Successfully changed
|
||||
commands.moderation.editrules.success.description = I successfully changed the rules
|
||||
commands.moderation.editrules.help.description = Edits the rules message.
|
||||
|
||||
commands.music.bass.error.connected.title = No channel
|
||||
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.bass.help.description = Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title = Successfully connected
|
||||
commands.music.join.success.description = I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title = Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title = No Voice Channel
|
||||
commands.music.join.error.channel.description = You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title = No permission
|
||||
commands.music.join.error.permission.description = I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description = Joins your voice channel.
|
||||
commands.music.leave.success.title = Successfully disconnected
|
||||
commands.music.leave.success.description = I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title = No channel
|
||||
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile = Not connected
|
||||
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description = Leaves your voice channel.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Trying to load the song...
|
||||
commands.music.play.success.loading.title = %extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Title
|
||||
commands.music.play.success.author = Author
|
||||
commands.music.play.success.length = Length
|
||||
commands.music.play.success.tracks = Tracks
|
||||
commands.music.play.error.load.title = %extra% Load failed %extra%
|
||||
commands.music.play.error.load.description = Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title = %extra% No matches %extra%
|
||||
commands.music.play.error.match.description = I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title = Successfully continued
|
||||
commands.music.play.success.unpause.description = I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title = No channel
|
||||
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.help.description = Plays the specified song.
|
||||
commands.music.stop.success.title = Successfully stopped
|
||||
commands.music.stop.success.description = I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title = No channel
|
||||
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description = Stops the song.
|
||||
commands.music.info.success.title = Track info
|
||||
commands.music.info.error.title = No playing track
|
||||
commands.music.info.error.description = I am not playing anything at the moment
|
||||
commands.music.info.help.description = Shows information about the playing song.
|
||||
commands.music.queue.error.title = No queue
|
||||
commands.music.queue.error.description = There are no queued songs at the moment
|
||||
commands.music.queue.success.title = Queue %extra%
|
||||
commands.music.queue.success.description = This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description = Shows the music queue.
|
||||
commands.music.skip.success.title = Successfully skipped
|
||||
commands.music.skip.success.description = I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description = Skips the currently playing song.
|
||||
commands.music.volume.success.title = Successfully set
|
||||
commands.music.volume.success.description = I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title = Invalid number
|
||||
commands.music.volume.error.int.description = The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description = Change the volume of the music.
|
||||
commands.music.pause.success.title = Successfully paused
|
||||
commands.music.pause.success.description = I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title = Already paused
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pause the playing song.
|
||||
commands.music.loop.success.loop.title = Successfully activated
|
||||
commands.music.loop.success.loop.description = I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title = Successfully deactivated
|
||||
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title = No channel
|
||||
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.loop.help.description = Repeats a song/queue.
|
||||
commands.music.echo.success.title = Successfully activated
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF not showing? Click here
|
||||
commands.nsfw.img.error.title = Image not showing? Click here
|
||||
commands.nsfw.anal.help.description = Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description = Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description = Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description = Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description = Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description = Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description = Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description = Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description = Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description = Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description = Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description = Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description = Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description = Shows a random trans picture
|
||||
|
||||
commands.owner.eval.success.title = Eval Command
|
||||
commands.owner.eval.success.input = Input
|
||||
commands.owner.eval.success.output = Output
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Execute the given code
|
||||
commands.owner.guildleave.success.title = Successfully left
|
||||
commands.owner.guildleave.success.description = I successfully left %extra%.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Restart the bot
|
||||
commands.owner.shutdown.success.title = Shutdown
|
||||
commands.owner.shutdown.help.description = Shuts the Bot down
|
||||
commands.owner.test.success = TEST my friends
|
||||
commands.owner.test.help.description = Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
Hadder=Hadder
|
||||
error=Error
|
||||
none=None
|
||||
success\!=Success\!
|
||||
commands.fun.avatar.success.title=Avatar of %extra%
|
||||
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.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Please try again with another term.
|
||||
commands.fun.gif.help.description=Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title=Your random meme\:
|
||||
commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description=Sends you a random meme.
|
||||
commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
|
||||
commands.general.about.success.title=Hadder - About
|
||||
commands.general.about.success.description=Hadder is an open source Discord bot.
|
||||
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.help.description=Shows information about Hadder.
|
||||
commands.general.equals.string.first.request=Please send me the first String.
|
||||
commands.general.equals.string.second.request=Please send me the second String.
|
||||
commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first=First string\:
|
||||
commands.general.equals.string.second=Second string\:
|
||||
commands.general.equals.string.result=Result\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Description\:**
|
||||
commands.general.help.usage=**Usage\:**
|
||||
commands.general.help.example=**Example\:**
|
||||
commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description=Shows each command and explains its usage.
|
||||
commands.general.help.help.label=[CommandName]
|
||||
commands.general.invite.success.title=Invite me\!
|
||||
commands.general.invite.success.description=[Invite me here\!]%extra%
|
||||
commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description=Shows the ping to the Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback Topic
|
||||
commands.misc.feedback.title.request.description=Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title=Feedback Description
|
||||
commands.misc.feedback.description.request.description=Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title=Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description=Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title=Link your GitHub Account
|
||||
commands.misc.github.success.title=Information about %extra%
|
||||
commands.misc.github.success.bio=User bio
|
||||
commands.misc.github.success.location=Location
|
||||
commands.misc.github.success.website=Website
|
||||
commands.misc.github.success.repositories=Public repositories
|
||||
commands.misc.github.success.gists=Public gists
|
||||
commands.misc.github.success.followers=Followers
|
||||
commands.misc.github.success.following=Following
|
||||
commands.misc.github.api.error.title=API error
|
||||
commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title=User doesn't exist
|
||||
commands.misc.github.user.error.description=I can not find a user named like this\!
|
||||
commands.misc.github.connect.title=Connect your GH account
|
||||
commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description=Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title=Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title=Wait. That's illegal.
|
||||
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.error.title=Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description=There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title=You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description=This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error=Hol' up
|
||||
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.help.description=Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title=Serverstats
|
||||
commands.misc.serverstats.description=This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description=Shows information about a server.
|
||||
commands.misc.profile.error.title=Not found
|
||||
commands.misc.profile.error.description=I can't find the specified user.
|
||||
commands.misc.profile.help.description=Shows some information about the specified user.
|
||||
commands.misc.code.success.title=Invite code information
|
||||
commands.misc.code.success.description=This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title=Code not found
|
||||
commands.misc.code.error.description=I can't find the specified invite code.
|
||||
commands.misc.code.help.description=Shows information about a invite code.
|
||||
commands.misc.moveall.success.title=Successfully moved
|
||||
commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title=Not twice
|
||||
commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title=Invalid ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Invalid ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description=Shows the newest stats of COVID-19
|
||||
commands.moderation.ban.success.title=Successfully banned
|
||||
commands.moderation.ban.success.description=I successfully baned %extra%
|
||||
commands.moderation.ban.error.title=Not possible
|
||||
commands.moderation.ban.myself.error.description=I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description=You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description=I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description=Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title=Successfully deleted
|
||||
commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title=Invalid number
|
||||
commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title=Successfully cleared
|
||||
commands.moderation.clear.success.description.singular=Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title=No messages\!
|
||||
commands.moderation.clear.message.error.description=There are no messages in this channel.
|
||||
commands.moderation.clear.help.description=Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title=%extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description=The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description=Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title=Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title=Already activated
|
||||
commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description=I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title=Not possible
|
||||
commands.moderation.kick.myself.error.description=I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description=You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description=Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description=I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description=I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description=Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title=All regions
|
||||
commands.moderation.regionchange.success.title=Successfully set region
|
||||
commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description=Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title=Successfully added role(s)
|
||||
commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title=Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title=Set up rules
|
||||
commands.moderation.rules.setup.description=Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title=Channel not found
|
||||
commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title=Rules message
|
||||
commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title=Role to assign/remove
|
||||
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.role.error.title=Role does not exist
|
||||
commands.moderation.rules.role.error.description=The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title=No permission
|
||||
commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title=Wrong Guild
|
||||
commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title=Custom Accept Emote
|
||||
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.emote.decline.title=Custom Decline Emote
|
||||
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.emote.error.access.description=I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description=The given emote can't be used.
|
||||
commands.moderation.rules.success.title=Successfully set the rules
|
||||
commands.moderation.rules.success.description=I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title=Can't write messages
|
||||
commands.moderation.rules.error.message.description=I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title=No permission
|
||||
commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title=Can't interact
|
||||
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.help.description=Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title=Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description=Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title=Rules channel
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=No rules message
|
||||
commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title=New message
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=No rules
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Successfully changed
|
||||
commands.moderation.editrules.success.description=I successfully changed the rules
|
||||
commands.moderation.editrules.help.description=Edits the rules message.
|
||||
commands.music.bass.error.connected.title=No channel
|
||||
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.bass.help.description=Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title=Successfully connected
|
||||
commands.music.join.success.description=I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title=Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title=No Voice Channel
|
||||
commands.music.join.error.channel.description=You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title=No permission
|
||||
commands.music.join.error.permission.description=I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description=Joins your voice channel.
|
||||
commands.music.leave.success.title=Successfully disconnected
|
||||
commands.music.leave.success.description=I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title=No channel
|
||||
commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile=Not connected
|
||||
commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description=Leaves your voice channel.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Trying to load the song...
|
||||
commands.music.play.success.loading.title=%extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Title
|
||||
commands.music.play.success.author=Author
|
||||
commands.music.play.success.length=Length
|
||||
commands.music.play.success.tracks=Tracks
|
||||
commands.music.play.error.load.title=%extra% Load failed %extra%
|
||||
commands.music.play.error.load.description=Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title=%extra% No matches %extra%
|
||||
commands.music.play.error.match.description=I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title=Successfully continued
|
||||
commands.music.play.success.unpause.description=I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title=No channel
|
||||
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.help.description=Plays the specified song.
|
||||
commands.music.stop.success.title=Successfully stopped
|
||||
commands.music.stop.success.description=I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title=No channel
|
||||
commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description=Stops the song.
|
||||
commands.music.info.success.title=Track info
|
||||
commands.music.info.error.title=No playing track
|
||||
commands.music.info.error.description=I am not playing anything at the moment
|
||||
commands.music.info.help.description=Shows information about the playing song.
|
||||
commands.music.queue.error.title=No queue
|
||||
commands.music.queue.error.description=There are no queued songs at the moment
|
||||
commands.music.queue.success.title=Queue %extra%
|
||||
commands.music.queue.success.description=This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description=Shows the music queue.
|
||||
commands.music.skip.success.title=Successfully skipped
|
||||
commands.music.skip.success.description=I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description=Skips the currently playing song.
|
||||
commands.music.volume.success.title=Successfully set
|
||||
commands.music.volume.success.description=I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title=Invalid number
|
||||
commands.music.volume.error.int.description=The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description=Change the volume of the music.
|
||||
commands.music.pause.success.title=Successfully paused
|
||||
commands.music.pause.success.description=I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title=Already paused
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pause the playing song.
|
||||
commands.music.loop.success.loop.title=Successfully activated
|
||||
commands.music.loop.success.loop.description=I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title=Successfully deactivated
|
||||
commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title=No channel
|
||||
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.loop.help.description=Repeats a song/queue.
|
||||
commands.music.echo.success.title=Successfully activated
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF not showing? Click here
|
||||
commands.nsfw.img.error.title=Image not showing? Click here
|
||||
commands.nsfw.anal.help.description=Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description=Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description=Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description=Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description=Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description=Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description=Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description=Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description=Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description=Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description=Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description=Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description=Shows a random trans picture
|
||||
commands.owner.eval.success.title=Eval Command
|
||||
commands.owner.eval.success.input=Input
|
||||
commands.owner.eval.success.output=Output
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Execute the given code
|
||||
commands.owner.guildleave.success.title=Successfully left
|
||||
commands.owner.guildleave.success.description=I successfully left %extra%.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Restart the bot
|
||||
commands.owner.shutdown.success.title=Shutdown
|
||||
commands.owner.shutdown.help.description=Shuts the Bot down
|
||||
commands.owner.test.success=TEST my friends
|
||||
commands.owner.test.help.description=Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -13,326 +13,316 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Error
|
||||
none = None
|
||||
success\! = Success\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar of %extra%
|
||||
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.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Please try again with another term.
|
||||
commands.fun.gif.help.description = Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title = Your random meme\:
|
||||
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description = Sends you a random meme.
|
||||
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - About
|
||||
commands.general.about.success.description = Hadder is an open source Discord bot.
|
||||
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.help.description = Shows information about Hadder.
|
||||
commands.general.equals.string.first.request = Please send me the first String.
|
||||
commands.general.equals.string.second.request = Please send me the second String.
|
||||
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first = First string\:
|
||||
commands.general.equals.string.second = Second string\:
|
||||
commands.general.equals.string.result = Result\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Description\:**
|
||||
commands.general.help.usage = **Usage\:**
|
||||
commands.general.help.example = **Example\:**
|
||||
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description = Shows each command and explains its usage.
|
||||
commands.general.help.help.label = [CommandName]
|
||||
commands.general.invite.success.title = Invite me\!
|
||||
commands.general.invite.success.description = [Invite me here\!]%extra%
|
||||
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description = Shows the ping to the Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback Topic
|
||||
commands.misc.feedback.title.request.description = Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title = Feedback Description
|
||||
commands.misc.feedback.description.request.description = Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title = Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description = Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title = Link your GitHub Account
|
||||
commands.misc.github.success.title = Information about %extra%
|
||||
commands.misc.github.success.bio = User bio
|
||||
commands.misc.github.success.location = Location
|
||||
commands.misc.github.success.website = Website
|
||||
commands.misc.github.success.repositories = Public repositories
|
||||
commands.misc.github.success.gists = Public gists
|
||||
commands.misc.github.success.followers = Followers
|
||||
commands.misc.github.success.following = Following
|
||||
commands.misc.github.api.error.title = API error
|
||||
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title = User doesn't exist
|
||||
commands.misc.github.user.error.description = I can not find a user named like this\!
|
||||
commands.misc.github.connect.title = Connect your GH account
|
||||
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description = Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title = Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title = Wait. That's illegal.
|
||||
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.error.title = Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description = There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title = You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description = This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error = Hol' up
|
||||
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.help.description = Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title = Serverstats
|
||||
commands.misc.serverstats.description = This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description = Shows information about a server.
|
||||
commands.misc.profile.error.title = Not found
|
||||
commands.misc.profile.error.description = I can't find the specified user.
|
||||
commands.misc.profile.help.description = Shows some information about the specified user.
|
||||
commands.misc.code.success.title = Invite code information
|
||||
commands.misc.code.success.description = This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title = Code not found
|
||||
commands.misc.code.error.description = I can't find the specified invite code.
|
||||
commands.misc.code.help.description = Shows information about a invite code.
|
||||
commands.misc.moveall.success.title = Successfully moved
|
||||
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title = Not twice
|
||||
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title = Invalid ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Invalid ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description = Shows the newest stats of COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Successfully banned
|
||||
commands.moderation.ban.success.description = I successfully baned %extra%
|
||||
commands.moderation.ban.error.title = Not possible
|
||||
commands.moderation.ban.myself.error.description = I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description = Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title = Successfully deleted
|
||||
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title = Invalid number
|
||||
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title = Successfully cleared
|
||||
commands.moderation.clear.success.description.singular = Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title = No messages\!
|
||||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title = Already activated
|
||||
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title = %extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description = I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title = Not possible
|
||||
commands.moderation.kick.myself.error.description = I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description = You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description = Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title = %extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description = I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description = I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description = Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title = All regions
|
||||
commands.moderation.regionchange.success.title = Successfully set region
|
||||
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title = Successfully added role(s)
|
||||
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title = Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title = Set up rules
|
||||
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title = Channel not found
|
||||
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title = Rules message
|
||||
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title = Role to assign/remove
|
||||
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.role.error.title = Role does not exist
|
||||
commands.moderation.rules.role.error.description = The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title = No permission
|
||||
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title = Wrong Guild
|
||||
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title = Custom Accept Emote
|
||||
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.emote.decline.title = Custom Decline Emote
|
||||
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.emote.error.access.description = I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description = The given emote can't be used.
|
||||
commands.moderation.rules.success.title = Successfully set the rules
|
||||
commands.moderation.rules.success.description = I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title = Can't write messages
|
||||
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title = No permission
|
||||
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title = Can't interact
|
||||
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.help.description = Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title = Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description = Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title = Rules channel
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = No rules message
|
||||
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title = New message
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = No rules
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Successfully changed
|
||||
commands.moderation.editrules.success.description = I successfully changed the rules
|
||||
commands.moderation.editrules.help.description = Edits the rules message.
|
||||
|
||||
commands.music.bass.error.connected.title = No channel
|
||||
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.bass.help.description = Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title = Successfully connected
|
||||
commands.music.join.success.description = I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title = Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title = No Voice Channel
|
||||
commands.music.join.error.channel.description = You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title = No permission
|
||||
commands.music.join.error.permission.description = I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description = Joins your voice channel.
|
||||
commands.music.leave.success.title = Successfully disconnected
|
||||
commands.music.leave.success.description = I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title = No channel
|
||||
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile = Not connected
|
||||
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description = Leaves your voice channel.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Trying to load the song...
|
||||
commands.music.play.success.loading.title = %extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Title
|
||||
commands.music.play.success.author = Author
|
||||
commands.music.play.success.length = Length
|
||||
commands.music.play.success.tracks = Tracks
|
||||
commands.music.play.error.load.title = %extra% Load failed %extra%
|
||||
commands.music.play.error.load.description = Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title = %extra% No matches %extra%
|
||||
commands.music.play.error.match.description = I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title = Successfully continued
|
||||
commands.music.play.success.unpause.description = I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title = No channel
|
||||
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.help.description = Plays the specified song.
|
||||
commands.music.stop.success.title = Successfully stopped
|
||||
commands.music.stop.success.description = I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title = No channel
|
||||
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description = Stops the song.
|
||||
commands.music.info.success.title = Track info
|
||||
commands.music.info.error.title = No playing track
|
||||
commands.music.info.error.description = I am not playing anything at the moment
|
||||
commands.music.info.help.description = Shows information about the playing song.
|
||||
commands.music.queue.error.title = No queue
|
||||
commands.music.queue.error.description = There are no queued songs at the moment
|
||||
commands.music.queue.success.title = Queue %extra%
|
||||
commands.music.queue.success.description = This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description = Shows the music queue.
|
||||
commands.music.skip.success.title = Successfully skipped
|
||||
commands.music.skip.success.description = I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description = Skips the currently playing song.
|
||||
commands.music.volume.success.title = Successfully set
|
||||
commands.music.volume.success.description = I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title = Invalid number
|
||||
commands.music.volume.error.int.description = The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description = Change the volume of the music.
|
||||
commands.music.pause.success.title = Successfully paused
|
||||
commands.music.pause.success.description = I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title = Already paused
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pause the playing song.
|
||||
commands.music.loop.success.loop.title = Successfully activated
|
||||
commands.music.loop.success.loop.description = I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title = Successfully deactivated
|
||||
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title = No channel
|
||||
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.loop.help.description = Repeats a song/queue.
|
||||
commands.music.echo.success.title = Successfully activated
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF not showing? Click here
|
||||
commands.nsfw.img.error.title = Image not showing? Click here
|
||||
commands.nsfw.anal.help.description = Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description = Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description = Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description = Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description = Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description = Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description = Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description = Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description = Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description = Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description = Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description = Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description = Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description = Shows a random trans picture
|
||||
|
||||
commands.owner.eval.success.title = Eval Command
|
||||
commands.owner.eval.success.input = Input
|
||||
commands.owner.eval.success.output = Output
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Execute the given code
|
||||
commands.owner.guildleave.success.title = Successfully left
|
||||
commands.owner.guildleave.success.description = I successfully left %extra%.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Restart the bot
|
||||
commands.owner.shutdown.success.title = Shutdown
|
||||
commands.owner.shutdown.help.description = Shuts the Bot down
|
||||
commands.owner.test.success = TEST my friends
|
||||
commands.owner.test.help.description = Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
Hadder=Hadder
|
||||
error=Error
|
||||
none=None
|
||||
success\!=Success\!
|
||||
commands.fun.avatar.success.title=Avatar of %extra%
|
||||
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.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Please try again with another term.
|
||||
commands.fun.gif.help.description=Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title=Your random meme\:
|
||||
commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description=Sends you a random meme.
|
||||
commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
|
||||
commands.general.about.success.title=Hadder - About
|
||||
commands.general.about.success.description=Hadder is an open source Discord bot.
|
||||
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.help.description=Shows information about Hadder.
|
||||
commands.general.equals.string.first.request=Please send me the first String.
|
||||
commands.general.equals.string.second.request=Please send me the second String.
|
||||
commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first=First string\:
|
||||
commands.general.equals.string.second=Second string\:
|
||||
commands.general.equals.string.result=Result\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Description\:**
|
||||
commands.general.help.usage=**Usage\:**
|
||||
commands.general.help.example=**Example\:**
|
||||
commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description=Shows each command and explains its usage.
|
||||
commands.general.help.help.label=[CommandName]
|
||||
commands.general.invite.success.title=Invite me\!
|
||||
commands.general.invite.success.description=[Invite me here\!]%extra%
|
||||
commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description=Shows the ping to the Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback Topic
|
||||
commands.misc.feedback.title.request.description=Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title=Feedback Description
|
||||
commands.misc.feedback.description.request.description=Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title=Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description=Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title=Link your GitHub Account
|
||||
commands.misc.github.success.title=Information about %extra%
|
||||
commands.misc.github.success.bio=User bio
|
||||
commands.misc.github.success.location=Location
|
||||
commands.misc.github.success.website=Website
|
||||
commands.misc.github.success.repositories=Public repositories
|
||||
commands.misc.github.success.gists=Public gists
|
||||
commands.misc.github.success.followers=Followers
|
||||
commands.misc.github.success.following=Following
|
||||
commands.misc.github.api.error.title=API error
|
||||
commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title=User doesn't exist
|
||||
commands.misc.github.user.error.description=I can not find a user named like this\!
|
||||
commands.misc.github.connect.title=Connect your GH account
|
||||
commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description=Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title=Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title=Wait. That's illegal.
|
||||
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.error.title=Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description=There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title=You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description=This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error=Hol' up
|
||||
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.help.description=Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title=Serverstats
|
||||
commands.misc.serverstats.description=This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description=Shows information about a server.
|
||||
commands.misc.profile.error.title=Not found
|
||||
commands.misc.profile.error.description=I can't find the specified user.
|
||||
commands.misc.profile.help.description=Shows some information about the specified user.
|
||||
commands.misc.code.success.title=Invite code information
|
||||
commands.misc.code.success.description=This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title=Code not found
|
||||
commands.misc.code.error.description=I can't find the specified invite code.
|
||||
commands.misc.code.help.description=Shows information about a invite code.
|
||||
commands.misc.moveall.success.title=Successfully moved
|
||||
commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title=Not twice
|
||||
commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title=Invalid ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Invalid ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description=Shows the newest stats of COVID-19
|
||||
commands.moderation.ban.success.title=Successfully banned
|
||||
commands.moderation.ban.success.description=I successfully baned %extra%
|
||||
commands.moderation.ban.error.title=Not possible
|
||||
commands.moderation.ban.myself.error.description=I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description=You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description=I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description=Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title=Successfully deleted
|
||||
commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title=Invalid number
|
||||
commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title=Successfully cleared
|
||||
commands.moderation.clear.success.description.singular=Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title=No messages\!
|
||||
commands.moderation.clear.message.error.description=There are no messages in this channel.
|
||||
commands.moderation.clear.help.description=Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title=%extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description=The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description=Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title=Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title=Already activated
|
||||
commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description=I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title=Not possible
|
||||
commands.moderation.kick.myself.error.description=I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description=You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description=Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description=I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description=I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description=Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title=All regions
|
||||
commands.moderation.regionchange.success.title=Successfully set region
|
||||
commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description=Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title=Successfully added role(s)
|
||||
commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title=Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title=Set up rules
|
||||
commands.moderation.rules.setup.description=Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title=Channel not found
|
||||
commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title=Rules message
|
||||
commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title=Role to assign/remove
|
||||
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.role.error.title=Role does not exist
|
||||
commands.moderation.rules.role.error.description=The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title=No permission
|
||||
commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title=Wrong Guild
|
||||
commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title=Custom Accept Emote
|
||||
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.emote.decline.title=Custom Decline Emote
|
||||
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.emote.error.access.description=I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description=The given emote can't be used.
|
||||
commands.moderation.rules.success.title=Successfully set the rules
|
||||
commands.moderation.rules.success.description=I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title=Can't write messages
|
||||
commands.moderation.rules.error.message.description=I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title=No permission
|
||||
commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title=Can't interact
|
||||
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.help.description=Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title=Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description=Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title=Rules channel
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=No rules message
|
||||
commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title=New message
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=No rules
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Successfully changed
|
||||
commands.moderation.editrules.success.description=I successfully changed the rules
|
||||
commands.moderation.editrules.help.description=Edits the rules message.
|
||||
commands.music.bass.error.connected.title=No channel
|
||||
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.bass.help.description=Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title=Successfully connected
|
||||
commands.music.join.success.description=I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title=Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title=No Voice Channel
|
||||
commands.music.join.error.channel.description=You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title=No permission
|
||||
commands.music.join.error.permission.description=I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description=Joins your voice channel.
|
||||
commands.music.leave.success.title=Successfully disconnected
|
||||
commands.music.leave.success.description=I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title=No channel
|
||||
commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile=Not connected
|
||||
commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description=Leaves your voice channel.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Trying to load the song...
|
||||
commands.music.play.success.loading.title=%extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Title
|
||||
commands.music.play.success.author=Author
|
||||
commands.music.play.success.length=Length
|
||||
commands.music.play.success.tracks=Tracks
|
||||
commands.music.play.error.load.title=%extra% Load failed %extra%
|
||||
commands.music.play.error.load.description=Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title=%extra% No matches %extra%
|
||||
commands.music.play.error.match.description=I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title=Successfully continued
|
||||
commands.music.play.success.unpause.description=I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title=No channel
|
||||
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.help.description=Plays the specified song.
|
||||
commands.music.stop.success.title=Successfully stopped
|
||||
commands.music.stop.success.description=I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title=No channel
|
||||
commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description=Stops the song.
|
||||
commands.music.info.success.title=Track info
|
||||
commands.music.info.error.title=No playing track
|
||||
commands.music.info.error.description=I am not playing anything at the moment
|
||||
commands.music.info.help.description=Shows information about the playing song.
|
||||
commands.music.queue.error.title=No queue
|
||||
commands.music.queue.error.description=There are no queued songs at the moment
|
||||
commands.music.queue.success.title=Queue %extra%
|
||||
commands.music.queue.success.description=This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description=Shows the music queue.
|
||||
commands.music.skip.success.title=Successfully skipped
|
||||
commands.music.skip.success.description=I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description=Skips the currently playing song.
|
||||
commands.music.volume.success.title=Successfully set
|
||||
commands.music.volume.success.description=I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title=Invalid number
|
||||
commands.music.volume.error.int.description=The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description=Change the volume of the music.
|
||||
commands.music.pause.success.title=Successfully paused
|
||||
commands.music.pause.success.description=I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title=Already paused
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pause the playing song.
|
||||
commands.music.loop.success.loop.title=Successfully activated
|
||||
commands.music.loop.success.loop.description=I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title=Successfully deactivated
|
||||
commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title=No channel
|
||||
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.loop.help.description=Repeats a song/queue.
|
||||
commands.music.echo.success.title=Successfully activated
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF not showing? Click here
|
||||
commands.nsfw.img.error.title=Image not showing? Click here
|
||||
commands.nsfw.anal.help.description=Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description=Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description=Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description=Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description=Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description=Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description=Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description=Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description=Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description=Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description=Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description=Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description=Shows a random trans picture
|
||||
commands.owner.eval.success.title=Eval Command
|
||||
commands.owner.eval.success.input=Input
|
||||
commands.owner.eval.success.output=Output
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Execute the given code
|
||||
commands.owner.guildleave.success.title=Successfully left
|
||||
commands.owner.guildleave.success.description=I successfully left %extra%.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Restart the bot
|
||||
commands.owner.shutdown.success.title=Shutdown
|
||||
commands.owner.shutdown.help.description=Shuts the Bot down
|
||||
commands.owner.test.success=TEST my friends
|
||||
commands.owner.test.help.description=Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -13,326 +13,316 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Error
|
||||
none = None
|
||||
success\! = Success\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar of %extra%
|
||||
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.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Please try again with another term.
|
||||
commands.fun.gif.help.description = Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title = Your random meme\:
|
||||
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description = Sends you a random meme.
|
||||
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - About
|
||||
commands.general.about.success.description = Hadder is an open source Discord bot.
|
||||
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.help.description = Shows information about Hadder.
|
||||
commands.general.equals.string.first.request = Please send me the first String.
|
||||
commands.general.equals.string.second.request = Please send me the second String.
|
||||
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first = First string\:
|
||||
commands.general.equals.string.second = Second string\:
|
||||
commands.general.equals.string.result = Result\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Description\:**
|
||||
commands.general.help.usage = **Usage\:**
|
||||
commands.general.help.example = **Example\:**
|
||||
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description = Shows each command and explains its usage.
|
||||
commands.general.help.help.label = [CommandName]
|
||||
commands.general.invite.success.title = Invite me\!
|
||||
commands.general.invite.success.description = [Invite me here\!]%extra%
|
||||
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description = Shows the ping to the Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback Topic
|
||||
commands.misc.feedback.title.request.description = Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title = Feedback Description
|
||||
commands.misc.feedback.description.request.description = Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title = Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description = Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title = Link your GitHub Account
|
||||
commands.misc.github.success.title = Information about %extra%
|
||||
commands.misc.github.success.bio = User bio
|
||||
commands.misc.github.success.location = Location
|
||||
commands.misc.github.success.website = Website
|
||||
commands.misc.github.success.repositories = Public repositories
|
||||
commands.misc.github.success.gists = Public gists
|
||||
commands.misc.github.success.followers = Followers
|
||||
commands.misc.github.success.following = Following
|
||||
commands.misc.github.api.error.title = API error
|
||||
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title = User doesn't exist
|
||||
commands.misc.github.user.error.description = I can not find a user named like this\!
|
||||
commands.misc.github.connect.title = Connect your GH account
|
||||
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description = Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title = Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title = Wait. That's illegal.
|
||||
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.error.title = Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description = There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title = You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description = This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error = Hol' up
|
||||
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.help.description = Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title = Serverstats
|
||||
commands.misc.serverstats.description = This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description = Shows information about a server.
|
||||
commands.misc.profile.error.title = Not found
|
||||
commands.misc.profile.error.description = I can't find the specified user.
|
||||
commands.misc.profile.help.description = Shows some information about the specified user.
|
||||
commands.misc.code.success.title = Invite code information
|
||||
commands.misc.code.success.description = This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title = Code not found
|
||||
commands.misc.code.error.description = I can't find the specified invite code.
|
||||
commands.misc.code.help.description = Shows information about a invite code.
|
||||
commands.misc.moveall.success.title = Successfully moved
|
||||
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title = Not twice
|
||||
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title = Invalid ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Invalid ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description = Shows the newest stats of COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Successfully banned
|
||||
commands.moderation.ban.success.description = I successfully baned %extra%
|
||||
commands.moderation.ban.error.title = Not possible
|
||||
commands.moderation.ban.myself.error.description = I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description = Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title = Successfully deleted
|
||||
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title = Invalid number
|
||||
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title = Successfully cleared
|
||||
commands.moderation.clear.success.description.singular = Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title = No messages\!
|
||||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title = Already activated
|
||||
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title = %extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description = I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title = Not possible
|
||||
commands.moderation.kick.myself.error.description = I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description = You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description = Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title = %extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description = I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description = I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description = Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title = All regions
|
||||
commands.moderation.regionchange.success.title = Successfully set region
|
||||
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title = Successfully added role(s)
|
||||
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title = Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title = Set up rules
|
||||
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title = Channel not found
|
||||
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title = Rules message
|
||||
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title = Role to assign/remove
|
||||
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.role.error.title = Role does not exist
|
||||
commands.moderation.rules.role.error.description = The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title = No permission
|
||||
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title = Wrong Guild
|
||||
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title = Custom Accept Emote
|
||||
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.emote.decline.title = Custom Decline Emote
|
||||
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.emote.error.access.description = I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description = The given emote can't be used.
|
||||
commands.moderation.rules.success.title = Successfully set the rules
|
||||
commands.moderation.rules.success.description = I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title = Can't write messages
|
||||
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title = No permission
|
||||
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title = Can't interact
|
||||
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.help.description = Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title = Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description = Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title = Rules channel
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = No rules message
|
||||
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title = New message
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = No rules
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Successfully changed
|
||||
commands.moderation.editrules.success.description = I successfully changed the rules
|
||||
commands.moderation.editrules.help.description = Edits the rules message.
|
||||
|
||||
commands.music.bass.error.connected.title = No channel
|
||||
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.bass.help.description = Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title = Successfully connected
|
||||
commands.music.join.success.description = I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title = Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title = No Voice Channel
|
||||
commands.music.join.error.channel.description = You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title = No permission
|
||||
commands.music.join.error.permission.description = I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description = Joins your voice channel.
|
||||
commands.music.leave.success.title = Successfully disconnected
|
||||
commands.music.leave.success.description = I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title = No channel
|
||||
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile = Not connected
|
||||
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description = Leaves your voice channel.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Trying to load the song...
|
||||
commands.music.play.success.loading.title = %extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Title
|
||||
commands.music.play.success.author = Author
|
||||
commands.music.play.success.length = Length
|
||||
commands.music.play.success.tracks = Tracks
|
||||
commands.music.play.error.load.title = %extra% Load failed %extra%
|
||||
commands.music.play.error.load.description = Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title = %extra% No matches %extra%
|
||||
commands.music.play.error.match.description = I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title = Successfully continued
|
||||
commands.music.play.success.unpause.description = I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title = No channel
|
||||
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.help.description = Plays the specified song.
|
||||
commands.music.stop.success.title = Successfully stopped
|
||||
commands.music.stop.success.description = I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title = No channel
|
||||
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description = Stops the song.
|
||||
commands.music.info.success.title = Track info
|
||||
commands.music.info.error.title = No playing track
|
||||
commands.music.info.error.description = I am not playing anything at the moment
|
||||
commands.music.info.help.description = Shows information about the playing song.
|
||||
commands.music.queue.error.title = No queue
|
||||
commands.music.queue.error.description = There are no queued songs at the moment
|
||||
commands.music.queue.success.title = Queue %extra%
|
||||
commands.music.queue.success.description = This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description = Shows the music queue.
|
||||
commands.music.skip.success.title = Successfully skipped
|
||||
commands.music.skip.success.description = I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description = Skips the currently playing song.
|
||||
commands.music.volume.success.title = Successfully set
|
||||
commands.music.volume.success.description = I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title = Invalid number
|
||||
commands.music.volume.error.int.description = The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description = Change the volume of the music.
|
||||
commands.music.pause.success.title = Successfully paused
|
||||
commands.music.pause.success.description = I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title = Already paused
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pause the playing song.
|
||||
commands.music.loop.success.loop.title = Successfully activated
|
||||
commands.music.loop.success.loop.description = I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title = Successfully deactivated
|
||||
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title = No channel
|
||||
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.loop.help.description = Repeats a song/queue.
|
||||
commands.music.echo.success.title = Successfully activated
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF not showing? Click here
|
||||
commands.nsfw.img.error.title = Image not showing? Click here
|
||||
commands.nsfw.anal.help.description = Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description = Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description = Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description = Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description = Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description = Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description = Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description = Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description = Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description = Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description = Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description = Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description = Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description = Shows a random trans picture
|
||||
|
||||
commands.owner.eval.success.title = Eval Command
|
||||
commands.owner.eval.success.input = Input
|
||||
commands.owner.eval.success.output = Output
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Execute the given code
|
||||
commands.owner.guildleave.success.title = Successfully left
|
||||
commands.owner.guildleave.success.description = I successfully left %extra%.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Restart the bot
|
||||
commands.owner.shutdown.success.title = Shutdown
|
||||
commands.owner.shutdown.help.description = Shuts the Bot down
|
||||
commands.owner.test.success = TEST my friends
|
||||
commands.owner.test.help.description = Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
Hadder=Hadder
|
||||
error=Error
|
||||
none=None
|
||||
success\!=Success\!
|
||||
commands.fun.avatar.success.title=Avatar of %extra%
|
||||
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.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Please try again with another term.
|
||||
commands.fun.gif.help.description=Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title=Your random meme\:
|
||||
commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description=Sends you a random meme.
|
||||
commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
|
||||
commands.general.about.success.title=Hadder - About
|
||||
commands.general.about.success.description=Hadder is an open source Discord bot.
|
||||
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.help.description=Shows information about Hadder.
|
||||
commands.general.equals.string.first.request=Please send me the first String.
|
||||
commands.general.equals.string.second.request=Please send me the second String.
|
||||
commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first=First string\:
|
||||
commands.general.equals.string.second=Second string\:
|
||||
commands.general.equals.string.result=Result\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Description\:**
|
||||
commands.general.help.usage=**Usage\:**
|
||||
commands.general.help.example=**Example\:**
|
||||
commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description=Shows each command and explains its usage.
|
||||
commands.general.help.help.label=[CommandName]
|
||||
commands.general.invite.success.title=Invite me\!
|
||||
commands.general.invite.success.description=[Invite me here\!]%extra%
|
||||
commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description=Shows the ping to the Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback Topic
|
||||
commands.misc.feedback.title.request.description=Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title=Feedback Description
|
||||
commands.misc.feedback.description.request.description=Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title=Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description=Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title=Link your GitHub Account
|
||||
commands.misc.github.success.title=Information about %extra%
|
||||
commands.misc.github.success.bio=User bio
|
||||
commands.misc.github.success.location=Location
|
||||
commands.misc.github.success.website=Website
|
||||
commands.misc.github.success.repositories=Public repositories
|
||||
commands.misc.github.success.gists=Public gists
|
||||
commands.misc.github.success.followers=Followers
|
||||
commands.misc.github.success.following=Following
|
||||
commands.misc.github.api.error.title=API error
|
||||
commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title=User doesn't exist
|
||||
commands.misc.github.user.error.description=I can not find a user named like this\!
|
||||
commands.misc.github.connect.title=Connect your GH account
|
||||
commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description=Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title=Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title=Wait. That's illegal.
|
||||
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.error.title=Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description=There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title=You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description=This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error=Hol' up
|
||||
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.help.description=Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title=Serverstats
|
||||
commands.misc.serverstats.description=This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description=Shows information about a server.
|
||||
commands.misc.profile.error.title=Not found
|
||||
commands.misc.profile.error.description=I can't find the specified user.
|
||||
commands.misc.profile.help.description=Shows some information about the specified user.
|
||||
commands.misc.code.success.title=Invite code information
|
||||
commands.misc.code.success.description=This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title=Code not found
|
||||
commands.misc.code.error.description=I can't find the specified invite code.
|
||||
commands.misc.code.help.description=Shows information about a invite code.
|
||||
commands.misc.moveall.success.title=Successfully moved
|
||||
commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title=Not twice
|
||||
commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title=Invalid ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Invalid ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description=Shows the newest stats of COVID-19
|
||||
commands.moderation.ban.success.title=Successfully banned
|
||||
commands.moderation.ban.success.description=I successfully baned %extra%
|
||||
commands.moderation.ban.error.title=Not possible
|
||||
commands.moderation.ban.myself.error.description=I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description=You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description=I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description=Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title=Successfully deleted
|
||||
commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title=Invalid number
|
||||
commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title=Successfully cleared
|
||||
commands.moderation.clear.success.description.singular=Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title=No messages\!
|
||||
commands.moderation.clear.message.error.description=There are no messages in this channel.
|
||||
commands.moderation.clear.help.description=Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title=%extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description=The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description=Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title=Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title=Already activated
|
||||
commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description=I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title=Not possible
|
||||
commands.moderation.kick.myself.error.description=I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description=You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description=Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description=I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description=I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description=Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title=All regions
|
||||
commands.moderation.regionchange.success.title=Successfully set region
|
||||
commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description=Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title=Successfully added role(s)
|
||||
commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title=Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title=Set up rules
|
||||
commands.moderation.rules.setup.description=Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title=Channel not found
|
||||
commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title=Rules message
|
||||
commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title=Role to assign/remove
|
||||
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.role.error.title=Role does not exist
|
||||
commands.moderation.rules.role.error.description=The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title=No permission
|
||||
commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title=Wrong Guild
|
||||
commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title=Custom Accept Emote
|
||||
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.emote.decline.title=Custom Decline Emote
|
||||
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.emote.error.access.description=I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description=The given emote can't be used.
|
||||
commands.moderation.rules.success.title=Successfully set the rules
|
||||
commands.moderation.rules.success.description=I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title=Can't write messages
|
||||
commands.moderation.rules.error.message.description=I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title=No permission
|
||||
commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title=Can't interact
|
||||
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.help.description=Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title=Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description=Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title=Rules channel
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=No rules message
|
||||
commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title=New message
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=No rules
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Successfully changed
|
||||
commands.moderation.editrules.success.description=I successfully changed the rules
|
||||
commands.moderation.editrules.help.description=Edits the rules message.
|
||||
commands.music.bass.error.connected.title=No channel
|
||||
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.bass.help.description=Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title=Successfully connected
|
||||
commands.music.join.success.description=I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title=Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title=No Voice Channel
|
||||
commands.music.join.error.channel.description=You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title=No permission
|
||||
commands.music.join.error.permission.description=I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description=Joins your voice channel.
|
||||
commands.music.leave.success.title=Successfully disconnected
|
||||
commands.music.leave.success.description=I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title=No channel
|
||||
commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile=Not connected
|
||||
commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description=Leaves your voice channel.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Trying to load the song...
|
||||
commands.music.play.success.loading.title=%extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Title
|
||||
commands.music.play.success.author=Author
|
||||
commands.music.play.success.length=Length
|
||||
commands.music.play.success.tracks=Tracks
|
||||
commands.music.play.error.load.title=%extra% Load failed %extra%
|
||||
commands.music.play.error.load.description=Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title=%extra% No matches %extra%
|
||||
commands.music.play.error.match.description=I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title=Successfully continued
|
||||
commands.music.play.success.unpause.description=I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title=No channel
|
||||
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.help.description=Plays the specified song.
|
||||
commands.music.stop.success.title=Successfully stopped
|
||||
commands.music.stop.success.description=I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title=No channel
|
||||
commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description=Stops the song.
|
||||
commands.music.info.success.title=Track info
|
||||
commands.music.info.error.title=No playing track
|
||||
commands.music.info.error.description=I am not playing anything at the moment
|
||||
commands.music.info.help.description=Shows information about the playing song.
|
||||
commands.music.queue.error.title=No queue
|
||||
commands.music.queue.error.description=There are no queued songs at the moment
|
||||
commands.music.queue.success.title=Queue %extra%
|
||||
commands.music.queue.success.description=This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description=Shows the music queue.
|
||||
commands.music.skip.success.title=Successfully skipped
|
||||
commands.music.skip.success.description=I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description=Skips the currently playing song.
|
||||
commands.music.volume.success.title=Successfully set
|
||||
commands.music.volume.success.description=I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title=Invalid number
|
||||
commands.music.volume.error.int.description=The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description=Change the volume of the music.
|
||||
commands.music.pause.success.title=Successfully paused
|
||||
commands.music.pause.success.description=I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title=Already paused
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pause the playing song.
|
||||
commands.music.loop.success.loop.title=Successfully activated
|
||||
commands.music.loop.success.loop.description=I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title=Successfully deactivated
|
||||
commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title=No channel
|
||||
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.loop.help.description=Repeats a song/queue.
|
||||
commands.music.echo.success.title=Successfully activated
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF not showing? Click here
|
||||
commands.nsfw.img.error.title=Image not showing? Click here
|
||||
commands.nsfw.anal.help.description=Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description=Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description=Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description=Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description=Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description=Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description=Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description=Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description=Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description=Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description=Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description=Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description=Shows a random trans picture
|
||||
commands.owner.eval.success.title=Eval Command
|
||||
commands.owner.eval.success.input=Input
|
||||
commands.owner.eval.success.output=Output
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Execute the given code
|
||||
commands.owner.guildleave.success.title=Successfully left
|
||||
commands.owner.guildleave.success.description=I successfully left %extra%.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Restart the bot
|
||||
commands.owner.shutdown.success.title=Shutdown
|
||||
commands.owner.shutdown.help.description=Shuts the Bot down
|
||||
commands.owner.test.success=TEST my friends
|
||||
commands.owner.test.help.description=Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -13,326 +13,316 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Error
|
||||
none = None
|
||||
success\! = Success\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar of %extra%
|
||||
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.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Please try again with another term.
|
||||
commands.fun.gif.help.description = Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title = Your random meme\:
|
||||
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description = Sends you a random meme.
|
||||
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - About
|
||||
commands.general.about.success.description = Hadder is an open source Discord bot.
|
||||
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.help.description = Shows information about Hadder.
|
||||
commands.general.equals.string.first.request = Please send me the first String.
|
||||
commands.general.equals.string.second.request = Please send me the second String.
|
||||
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first = First string\:
|
||||
commands.general.equals.string.second = Second string\:
|
||||
commands.general.equals.string.result = Result\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Description\:**
|
||||
commands.general.help.usage = **Usage\:**
|
||||
commands.general.help.example = **Example\:**
|
||||
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description = Shows each command and explains its usage.
|
||||
commands.general.help.help.label = [CommandName]
|
||||
commands.general.invite.success.title = Invite me\!
|
||||
commands.general.invite.success.description = [Invite me here\!]%extra%
|
||||
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description = Shows the ping to the Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback Topic
|
||||
commands.misc.feedback.title.request.description = Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title = Feedback Description
|
||||
commands.misc.feedback.description.request.description = Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title = Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description = Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title = Link your GitHub Account
|
||||
commands.misc.github.success.title = Information about %extra%
|
||||
commands.misc.github.success.bio = User bio
|
||||
commands.misc.github.success.location = Location
|
||||
commands.misc.github.success.website = Website
|
||||
commands.misc.github.success.repositories = Public repositories
|
||||
commands.misc.github.success.gists = Public gists
|
||||
commands.misc.github.success.followers = Followers
|
||||
commands.misc.github.success.following = Following
|
||||
commands.misc.github.api.error.title = API error
|
||||
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title = User doesn't exist
|
||||
commands.misc.github.user.error.description = I can not find a user named like this\!
|
||||
commands.misc.github.connect.title = Connect your GH account
|
||||
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description = Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title = Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title = Wait. That's illegal.
|
||||
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.error.title = Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description = There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title = You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description = This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error = Hol' up
|
||||
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.help.description = Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title = Serverstats
|
||||
commands.misc.serverstats.description = This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description = Shows information about a server.
|
||||
commands.misc.profile.error.title = Not found
|
||||
commands.misc.profile.error.description = I can't find the specified user.
|
||||
commands.misc.profile.help.description = Shows some information about the specified user.
|
||||
commands.misc.code.success.title = Invite code information
|
||||
commands.misc.code.success.description = This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title = Code not found
|
||||
commands.misc.code.error.description = I can't find the specified invite code.
|
||||
commands.misc.code.help.description = Shows information about a invite code.
|
||||
commands.misc.moveall.success.title = Successfully moved
|
||||
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title = Not twice
|
||||
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title = Invalid ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Invalid ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description = Shows the newest stats of COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Successfully banned
|
||||
commands.moderation.ban.success.description = I successfully baned %extra%
|
||||
commands.moderation.ban.error.title = Not possible
|
||||
commands.moderation.ban.myself.error.description = I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description = Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title = Successfully deleted
|
||||
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title = Invalid number
|
||||
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title = Successfully cleared
|
||||
commands.moderation.clear.success.description.singular = Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title = No messages\!
|
||||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title = Already activated
|
||||
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title = %extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description = I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title = Not possible
|
||||
commands.moderation.kick.myself.error.description = I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description = You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description = Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title = %extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description = I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description = I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description = Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title = All regions
|
||||
commands.moderation.regionchange.success.title = Successfully set region
|
||||
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title = Successfully added role(s)
|
||||
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title = Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title = Set up rules
|
||||
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title = Channel not found
|
||||
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title = Rules message
|
||||
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title = Role to assign/remove
|
||||
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.role.error.title = Role does not exist
|
||||
commands.moderation.rules.role.error.description = The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title = No permission
|
||||
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title = Wrong Guild
|
||||
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title = Custom Accept Emote
|
||||
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.emote.decline.title = Custom Decline Emote
|
||||
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.emote.error.access.description = I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description = The given emote can't be used.
|
||||
commands.moderation.rules.success.title = Successfully set the rules
|
||||
commands.moderation.rules.success.description = I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title = Can't write messages
|
||||
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title = No permission
|
||||
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title = Can't interact
|
||||
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.help.description = Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title = Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description = Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title = Rules channel
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = No rules message
|
||||
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title = New message
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = No rules
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Successfully changed
|
||||
commands.moderation.editrules.success.description = I successfully changed the rules
|
||||
commands.moderation.editrules.help.description = Edits the rules message.
|
||||
|
||||
commands.music.bass.error.connected.title = No channel
|
||||
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.bass.help.description = Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title = Successfully connected
|
||||
commands.music.join.success.description = I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title = Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title = No Voice Channel
|
||||
commands.music.join.error.channel.description = You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title = No permission
|
||||
commands.music.join.error.permission.description = I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description = Joins your voice channel.
|
||||
commands.music.leave.success.title = Successfully disconnected
|
||||
commands.music.leave.success.description = I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title = No channel
|
||||
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile = Not connected
|
||||
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description = Leaves your voice channel.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Trying to load the song...
|
||||
commands.music.play.success.loading.title = %extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Title
|
||||
commands.music.play.success.author = Author
|
||||
commands.music.play.success.length = Length
|
||||
commands.music.play.success.tracks = Tracks
|
||||
commands.music.play.error.load.title = %extra% Load failed %extra%
|
||||
commands.music.play.error.load.description = Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title = %extra% No matches %extra%
|
||||
commands.music.play.error.match.description = I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title = Successfully continued
|
||||
commands.music.play.success.unpause.description = I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title = No channel
|
||||
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.help.description = Plays the specified song.
|
||||
commands.music.stop.success.title = Successfully stopped
|
||||
commands.music.stop.success.description = I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title = No channel
|
||||
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description = Stops the song.
|
||||
commands.music.info.success.title = Track info
|
||||
commands.music.info.error.title = No playing track
|
||||
commands.music.info.error.description = I am not playing anything at the moment
|
||||
commands.music.info.help.description = Shows information about the playing song.
|
||||
commands.music.queue.error.title = No queue
|
||||
commands.music.queue.error.description = There are no queued songs at the moment
|
||||
commands.music.queue.success.title = Queue %extra%
|
||||
commands.music.queue.success.description = This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description = Shows the music queue.
|
||||
commands.music.skip.success.title = Successfully skipped
|
||||
commands.music.skip.success.description = I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description = Skips the currently playing song.
|
||||
commands.music.volume.success.title = Successfully set
|
||||
commands.music.volume.success.description = I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title = Invalid number
|
||||
commands.music.volume.error.int.description = The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description = Change the volume of the music.
|
||||
commands.music.pause.success.title = Successfully paused
|
||||
commands.music.pause.success.description = I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title = Already paused
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pause the playing song.
|
||||
commands.music.loop.success.loop.title = Successfully activated
|
||||
commands.music.loop.success.loop.description = I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title = Successfully deactivated
|
||||
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title = No channel
|
||||
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.loop.help.description = Repeats a song/queue.
|
||||
commands.music.echo.success.title = Successfully activated
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF not showing? Click here
|
||||
commands.nsfw.img.error.title = Image not showing? Click here
|
||||
commands.nsfw.anal.help.description = Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description = Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description = Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description = Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description = Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description = Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description = Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description = Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description = Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description = Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description = Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description = Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description = Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description = Shows a random trans picture
|
||||
|
||||
commands.owner.eval.success.title = Eval Command
|
||||
commands.owner.eval.success.input = Input
|
||||
commands.owner.eval.success.output = Output
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Execute the given code
|
||||
commands.owner.guildleave.success.title = Successfully left
|
||||
commands.owner.guildleave.success.description = I successfully left %extra%.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Restart the bot
|
||||
commands.owner.shutdown.success.title = Shutdown
|
||||
commands.owner.shutdown.help.description = Shuts the Bot down
|
||||
commands.owner.test.success = TEST my friends
|
||||
commands.owner.test.help.description = Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
Hadder=Hadder
|
||||
error=Error
|
||||
none=None
|
||||
success\!=Success\!
|
||||
commands.fun.avatar.success.title=Avatar of %extra%
|
||||
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.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Please try again with another term.
|
||||
commands.fun.gif.help.description=Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title=Your random meme\:
|
||||
commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description=Sends you a random meme.
|
||||
commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
|
||||
commands.general.about.success.title=Hadder - About
|
||||
commands.general.about.success.description=Hadder is an open source Discord bot.
|
||||
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.help.description=Shows information about Hadder.
|
||||
commands.general.equals.string.first.request=Please send me the first String.
|
||||
commands.general.equals.string.second.request=Please send me the second String.
|
||||
commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first=First string\:
|
||||
commands.general.equals.string.second=Second string\:
|
||||
commands.general.equals.string.result=Result\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Description\:**
|
||||
commands.general.help.usage=**Usage\:**
|
||||
commands.general.help.example=**Example\:**
|
||||
commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description=Shows each command and explains its usage.
|
||||
commands.general.help.help.label=[CommandName]
|
||||
commands.general.invite.success.title=Invite me\!
|
||||
commands.general.invite.success.description=[Invite me here\!]%extra%
|
||||
commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description=Shows the ping to the Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback Topic
|
||||
commands.misc.feedback.title.request.description=Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title=Feedback Description
|
||||
commands.misc.feedback.description.request.description=Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title=Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description=Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title=Link your GitHub Account
|
||||
commands.misc.github.success.title=Information about %extra%
|
||||
commands.misc.github.success.bio=User bio
|
||||
commands.misc.github.success.location=Location
|
||||
commands.misc.github.success.website=Website
|
||||
commands.misc.github.success.repositories=Public repositories
|
||||
commands.misc.github.success.gists=Public gists
|
||||
commands.misc.github.success.followers=Followers
|
||||
commands.misc.github.success.following=Following
|
||||
commands.misc.github.api.error.title=API error
|
||||
commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title=User doesn't exist
|
||||
commands.misc.github.user.error.description=I can not find a user named like this\!
|
||||
commands.misc.github.connect.title=Connect your GH account
|
||||
commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description=Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title=Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title=Wait. That's illegal.
|
||||
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.error.title=Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description=There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title=You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description=This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error=Hol' up
|
||||
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.help.description=Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title=Serverstats
|
||||
commands.misc.serverstats.description=This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description=Shows information about a server.
|
||||
commands.misc.profile.error.title=Not found
|
||||
commands.misc.profile.error.description=I can't find the specified user.
|
||||
commands.misc.profile.help.description=Shows some information about the specified user.
|
||||
commands.misc.code.success.title=Invite code information
|
||||
commands.misc.code.success.description=This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title=Code not found
|
||||
commands.misc.code.error.description=I can't find the specified invite code.
|
||||
commands.misc.code.help.description=Shows information about a invite code.
|
||||
commands.misc.moveall.success.title=Successfully moved
|
||||
commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title=Not twice
|
||||
commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title=Invalid ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Invalid ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description=Shows the newest stats of COVID-19
|
||||
commands.moderation.ban.success.title=Successfully banned
|
||||
commands.moderation.ban.success.description=I successfully baned %extra%
|
||||
commands.moderation.ban.error.title=Not possible
|
||||
commands.moderation.ban.myself.error.description=I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description=You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description=I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description=Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title=Successfully deleted
|
||||
commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title=Invalid number
|
||||
commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title=Successfully cleared
|
||||
commands.moderation.clear.success.description.singular=Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title=No messages\!
|
||||
commands.moderation.clear.message.error.description=There are no messages in this channel.
|
||||
commands.moderation.clear.help.description=Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title=%extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description=The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description=Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title=Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title=Already activated
|
||||
commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description=I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title=Not possible
|
||||
commands.moderation.kick.myself.error.description=I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description=You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description=Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description=I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description=I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description=Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title=All regions
|
||||
commands.moderation.regionchange.success.title=Successfully set region
|
||||
commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description=Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title=Successfully added role(s)
|
||||
commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title=Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title=Set up rules
|
||||
commands.moderation.rules.setup.description=Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title=Channel not found
|
||||
commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title=Rules message
|
||||
commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title=Role to assign/remove
|
||||
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.role.error.title=Role does not exist
|
||||
commands.moderation.rules.role.error.description=The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title=No permission
|
||||
commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title=Wrong Guild
|
||||
commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title=Custom Accept Emote
|
||||
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.emote.decline.title=Custom Decline Emote
|
||||
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.emote.error.access.description=I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description=The given emote can't be used.
|
||||
commands.moderation.rules.success.title=Successfully set the rules
|
||||
commands.moderation.rules.success.description=I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title=Can't write messages
|
||||
commands.moderation.rules.error.message.description=I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title=No permission
|
||||
commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title=Can't interact
|
||||
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.help.description=Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title=Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description=Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title=Rules channel
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=No rules message
|
||||
commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title=New message
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=No rules
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Successfully changed
|
||||
commands.moderation.editrules.success.description=I successfully changed the rules
|
||||
commands.moderation.editrules.help.description=Edits the rules message.
|
||||
commands.music.bass.error.connected.title=No channel
|
||||
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.bass.help.description=Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title=Successfully connected
|
||||
commands.music.join.success.description=I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title=Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title=No Voice Channel
|
||||
commands.music.join.error.channel.description=You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title=No permission
|
||||
commands.music.join.error.permission.description=I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description=Joins your voice channel.
|
||||
commands.music.leave.success.title=Successfully disconnected
|
||||
commands.music.leave.success.description=I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title=No channel
|
||||
commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile=Not connected
|
||||
commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description=Leaves your voice channel.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Trying to load the song...
|
||||
commands.music.play.success.loading.title=%extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Title
|
||||
commands.music.play.success.author=Author
|
||||
commands.music.play.success.length=Length
|
||||
commands.music.play.success.tracks=Tracks
|
||||
commands.music.play.error.load.title=%extra% Load failed %extra%
|
||||
commands.music.play.error.load.description=Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title=%extra% No matches %extra%
|
||||
commands.music.play.error.match.description=I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title=Successfully continued
|
||||
commands.music.play.success.unpause.description=I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title=No channel
|
||||
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.help.description=Plays the specified song.
|
||||
commands.music.stop.success.title=Successfully stopped
|
||||
commands.music.stop.success.description=I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title=No channel
|
||||
commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description=Stops the song.
|
||||
commands.music.info.success.title=Track info
|
||||
commands.music.info.error.title=No playing track
|
||||
commands.music.info.error.description=I am not playing anything at the moment
|
||||
commands.music.info.help.description=Shows information about the playing song.
|
||||
commands.music.queue.error.title=No queue
|
||||
commands.music.queue.error.description=There are no queued songs at the moment
|
||||
commands.music.queue.success.title=Queue %extra%
|
||||
commands.music.queue.success.description=This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description=Shows the music queue.
|
||||
commands.music.skip.success.title=Successfully skipped
|
||||
commands.music.skip.success.description=I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description=Skips the currently playing song.
|
||||
commands.music.volume.success.title=Successfully set
|
||||
commands.music.volume.success.description=I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title=Invalid number
|
||||
commands.music.volume.error.int.description=The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description=Change the volume of the music.
|
||||
commands.music.pause.success.title=Successfully paused
|
||||
commands.music.pause.success.description=I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title=Already paused
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pause the playing song.
|
||||
commands.music.loop.success.loop.title=Successfully activated
|
||||
commands.music.loop.success.loop.description=I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title=Successfully deactivated
|
||||
commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title=No channel
|
||||
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.loop.help.description=Repeats a song/queue.
|
||||
commands.music.echo.success.title=Successfully activated
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF not showing? Click here
|
||||
commands.nsfw.img.error.title=Image not showing? Click here
|
||||
commands.nsfw.anal.help.description=Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description=Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description=Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description=Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description=Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description=Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description=Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description=Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description=Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description=Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description=Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description=Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description=Shows a random trans picture
|
||||
commands.owner.eval.success.title=Eval Command
|
||||
commands.owner.eval.success.input=Input
|
||||
commands.owner.eval.success.output=Output
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Execute the given code
|
||||
commands.owner.guildleave.success.title=Successfully left
|
||||
commands.owner.guildleave.success.description=I successfully left %extra%.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Restart the bot
|
||||
commands.owner.shutdown.success.title=Shutdown
|
||||
commands.owner.shutdown.help.description=Shuts the Bot down
|
||||
commands.owner.test.success=TEST my friends
|
||||
commands.owner.test.help.description=Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -13,326 +13,316 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
Hadder = Hadder
|
||||
|
||||
error = Error
|
||||
none = None
|
||||
success\! = Success\!
|
||||
|
||||
commands.fun.avatar.success.title = Avatar of %extra%
|
||||
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.help.description = Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description = Please try again with another term.
|
||||
commands.fun.gif.help.description = Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title = Your random meme\:
|
||||
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description = Sends you a random meme.
|
||||
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde.
|
||||
|
||||
commands.general.about.success.title = Hadder - About
|
||||
commands.general.about.success.description = Hadder is an open source Discord bot.
|
||||
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.help.description = Shows information about Hadder.
|
||||
commands.general.equals.string.first.request = Please send me the first String.
|
||||
commands.general.equals.string.second.request = Please send me the second String.
|
||||
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first = First string\:
|
||||
commands.general.equals.string.second = Second string\:
|
||||
commands.general.equals.string.result = Result\:
|
||||
commands.general.equals.help.description = Checks if two strings are equal.
|
||||
commands.general.help.description = **Description\:**
|
||||
commands.general.help.usage = **Usage\:**
|
||||
commands.general.help.example = **Example\:**
|
||||
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description = Shows each command and explains its usage.
|
||||
commands.general.help.help.label = [CommandName]
|
||||
commands.general.invite.success.title = Invite me\!
|
||||
commands.general.invite.success.description = [Invite me here\!]%extra%
|
||||
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description = Shows the ping to the Discord API.
|
||||
|
||||
commands.misc.feedback.title.request.title = Feedback Topic
|
||||
commands.misc.feedback.title.request.description = Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title = Feedback Description
|
||||
commands.misc.feedback.description.request.description = Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title = Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description = Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title = Link your GitHub Account
|
||||
commands.misc.github.success.title = Information about %extra%
|
||||
commands.misc.github.success.bio = User bio
|
||||
commands.misc.github.success.location = Location
|
||||
commands.misc.github.success.website = Website
|
||||
commands.misc.github.success.repositories = Public repositories
|
||||
commands.misc.github.success.gists = Public gists
|
||||
commands.misc.github.success.followers = Followers
|
||||
commands.misc.github.success.following = Following
|
||||
commands.misc.github.api.error.title = API error
|
||||
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title = User doesn't exist
|
||||
commands.misc.github.user.error.description = I can not find a user named like this\!
|
||||
commands.misc.github.connect.title = Connect your GH account
|
||||
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description = Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title = Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title = Wait. That's illegal.
|
||||
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.error.title = Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description = There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title = You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description = This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error = Hol' up
|
||||
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.help.description = Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title = Serverstats
|
||||
commands.misc.serverstats.description = This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description = Shows information about a server.
|
||||
commands.misc.profile.error.title = Not found
|
||||
commands.misc.profile.error.description = I can't find the specified user.
|
||||
commands.misc.profile.help.description = Shows some information about the specified user.
|
||||
commands.misc.code.success.title = Invite code information
|
||||
commands.misc.code.success.description = This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title = Code not found
|
||||
commands.misc.code.error.description = I can't find the specified invite code.
|
||||
commands.misc.code.help.description = Shows information about a invite code.
|
||||
commands.misc.moveall.success.title = Successfully moved
|
||||
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title = Not twice
|
||||
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title = Invalid ID
|
||||
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title = Invalid ID
|
||||
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description = Shows the newest stats of COVID-19
|
||||
|
||||
commands.moderation.ban.success.title = Successfully banned
|
||||
commands.moderation.ban.success.description = I successfully baned %extra%
|
||||
commands.moderation.ban.error.title = Not possible
|
||||
commands.moderation.ban.myself.error.description = I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description = Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title = Successfully deleted
|
||||
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title = Invalid number
|
||||
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title = Successfully cleared
|
||||
commands.moderation.clear.success.description.singular = Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title = No messages\!
|
||||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title = Already activated
|
||||
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title = Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title = %extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description = I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title = Not possible
|
||||
commands.moderation.kick.myself.error.description = I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description = You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description = Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title = %extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description = I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description = I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description = Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title = All regions
|
||||
commands.moderation.regionchange.success.title = Successfully set region
|
||||
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title = Successfully added role(s)
|
||||
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title = Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title = Set up rules
|
||||
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title = Channel not found
|
||||
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title = Rules message
|
||||
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title = Role to assign/remove
|
||||
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.role.error.title = Role does not exist
|
||||
commands.moderation.rules.role.error.description = The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title = No permission
|
||||
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title = Wrong Guild
|
||||
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title = Custom Accept Emote
|
||||
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.emote.decline.title = Custom Decline Emote
|
||||
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.emote.error.access.description = I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title = Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description = The given emote can't be used.
|
||||
commands.moderation.rules.success.title = Successfully set the rules
|
||||
commands.moderation.rules.success.description = I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title = Can't write messages
|
||||
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title = No permission
|
||||
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title = Can't interact
|
||||
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.help.description = Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title = Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description = Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title = Rules channel
|
||||
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title = Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title = No rules message
|
||||
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title = New message
|
||||
commands.moderation.editrules.message.description = Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title = No rules
|
||||
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title = Successfully changed
|
||||
commands.moderation.editrules.success.description = I successfully changed the rules
|
||||
commands.moderation.editrules.help.description = Edits the rules message.
|
||||
|
||||
commands.music.bass.error.connected.title = No channel
|
||||
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.bass.help.description = Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title = Successfully connected
|
||||
commands.music.join.success.description = I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title = Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title = No Voice Channel
|
||||
commands.music.join.error.channel.description = You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title = No permission
|
||||
commands.music.join.error.permission.description = I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description = Joins your voice channel.
|
||||
commands.music.leave.success.title = Successfully disconnected
|
||||
commands.music.leave.success.description = I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title = No channel
|
||||
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile = Not connected
|
||||
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description = Leaves your voice channel.
|
||||
commands.music.play.load.title = %extra% Now loading %extra%
|
||||
commands.music.play.load.description = Trying to load the song...
|
||||
commands.music.play.success.loading.title = %extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title = %extra% Added to queue %extra%
|
||||
commands.music.play.success.title = Title
|
||||
commands.music.play.success.author = Author
|
||||
commands.music.play.success.length = Length
|
||||
commands.music.play.success.tracks = Tracks
|
||||
commands.music.play.error.load.title = %extra% Load failed %extra%
|
||||
commands.music.play.error.load.description = Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title = %extra% No matches %extra%
|
||||
commands.music.play.error.match.description = I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title = Successfully continued
|
||||
commands.music.play.success.unpause.description = I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title = No channel
|
||||
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.help.description = Plays the specified song.
|
||||
commands.music.stop.success.title = Successfully stopped
|
||||
commands.music.stop.success.description = I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title = No channel
|
||||
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description = Stops the song.
|
||||
commands.music.info.success.title = Track info
|
||||
commands.music.info.error.title = No playing track
|
||||
commands.music.info.error.description = I am not playing anything at the moment
|
||||
commands.music.info.help.description = Shows information about the playing song.
|
||||
commands.music.queue.error.title = No queue
|
||||
commands.music.queue.error.description = There are no queued songs at the moment
|
||||
commands.music.queue.success.title = Queue %extra%
|
||||
commands.music.queue.success.description = This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description = Shows the music queue.
|
||||
commands.music.skip.success.title = Successfully skipped
|
||||
commands.music.skip.success.description = I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description = Skips the currently playing song.
|
||||
commands.music.volume.success.title = Successfully set
|
||||
commands.music.volume.success.description = I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title = Invalid number
|
||||
commands.music.volume.error.int.description = The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description = Change the volume of the music.
|
||||
commands.music.pause.success.title = Successfully paused
|
||||
commands.music.pause.success.description = I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title = Already paused
|
||||
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description = Pause the playing song.
|
||||
commands.music.loop.success.loop.title = Successfully activated
|
||||
commands.music.loop.success.loop.description = I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title = Successfully deactivated
|
||||
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title = No channel
|
||||
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.loop.help.description = Repeats a song/queue.
|
||||
commands.music.echo.success.title = Successfully activated
|
||||
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description = Sends your voice through Hadder.
|
||||
|
||||
commands.nsfw.gif.error.title = GIF not showing? Click here
|
||||
commands.nsfw.img.error.title = Image not showing? Click here
|
||||
commands.nsfw.anal.help.description = Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description = Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description = Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description = Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description = Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description = Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description = Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description = Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description = Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description = Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description = Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description = Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description = Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description = Shows a random trans picture
|
||||
|
||||
commands.owner.eval.success.title = Eval Command
|
||||
commands.owner.eval.success.input = Input
|
||||
commands.owner.eval.success.output = Output
|
||||
commands.owner.eval.success.timing = Timing
|
||||
commands.owner.eval.help.description = Execute the given code
|
||||
commands.owner.guildleave.success.title = Successfully left
|
||||
commands.owner.guildleave.success.description = I successfully left %extra%.
|
||||
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.guildleave.help.description = Quit from a server
|
||||
commands.owner.reboot.help.description = Restart the bot
|
||||
commands.owner.shutdown.success.title = Shutdown
|
||||
commands.owner.shutdown.help.description = Shuts the Bot down
|
||||
commands.owner.test.success = TEST my friends
|
||||
commands.owner.test.help.description = Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
Hadder=Hadder
|
||||
error=Error
|
||||
none=None
|
||||
success\!=Success\!
|
||||
commands.fun.avatar.success.title=Avatar of %extra%
|
||||
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.help.description=Sends the avatar of the specified Member.
|
||||
commands.fun.gif.error.description=Please try again with another term.
|
||||
commands.fun.gif.help.description=Looks for a GIF on Giphy.
|
||||
commands.fun.meme.success.title=Your random meme\:
|
||||
commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
|
||||
commands.fun.meme.help.description=Sends you a random meme.
|
||||
commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
|
||||
commands.general.about.success.title=Hadder - About
|
||||
commands.general.about.success.description=Hadder is an open source Discord bot.
|
||||
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.help.description=Shows information about Hadder.
|
||||
commands.general.equals.string.first.request=Please send me the first String.
|
||||
commands.general.equals.string.second.request=Please send me the second String.
|
||||
commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
|
||||
commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
|
||||
commands.general.equals.string.first=First string\:
|
||||
commands.general.equals.string.second=Second string\:
|
||||
commands.general.equals.string.result=Result\:
|
||||
commands.general.equals.help.description=Checks if two strings are equal.
|
||||
commands.general.help.description=**Description\:**
|
||||
commands.general.help.usage=**Usage\:**
|
||||
commands.general.help.example=**Example\:**
|
||||
commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
|
||||
commands.general.help.help.description=Shows each command and explains its usage.
|
||||
commands.general.help.help.label=[CommandName]
|
||||
commands.general.invite.success.title=Invite me\!
|
||||
commands.general.invite.success.description=[Invite me here\!]%extra%
|
||||
commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
|
||||
commands.general.ping.help.description=Shows the ping to the Discord API.
|
||||
commands.misc.feedback.title.request.title=Feedback Topic
|
||||
commands.misc.feedback.title.request.description=Please send me the feedback topic.
|
||||
commands.misc.feedback.description.request.title=Feedback Description
|
||||
commands.misc.feedback.description.request.description=Please send me the feedback description now.
|
||||
commands.misc.feedback.success.title=Feedback successfully sent\!
|
||||
commands.misc.feedback.help.description=Sends feedback directly to the developers.
|
||||
commands.misc.github.link.title=Link your GitHub Account
|
||||
commands.misc.github.success.title=Information about %extra%
|
||||
commands.misc.github.success.bio=User bio
|
||||
commands.misc.github.success.location=Location
|
||||
commands.misc.github.success.website=Website
|
||||
commands.misc.github.success.repositories=Public repositories
|
||||
commands.misc.github.success.gists=Public gists
|
||||
commands.misc.github.success.followers=Followers
|
||||
commands.misc.github.success.following=Following
|
||||
commands.misc.github.api.error.title=API error
|
||||
commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
|
||||
commands.misc.github.user.error.title=User doesn't exist
|
||||
commands.misc.github.user.error.description=I can not find a user named like this\!
|
||||
commands.misc.github.connect.title=Connect your GH account
|
||||
commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
|
||||
commands.misc.github.help.description=Displays information about a GitHub user profile.
|
||||
commands.misc.screenshare.success.title=Here's your URL to share your Screen
|
||||
commands.misc.screenshare.id.error.title=Wait. That's illegal.
|
||||
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.error.title=Please choose a Voice Channel
|
||||
commands.misc.screenshare.channel.error.description=There is more than one channel with this name
|
||||
commands.misc.screenshare.number.error.title=You specified a wrong number\!
|
||||
commands.misc.screenshare.number.error.description=This isn't a Number.
|
||||
commands.misc.screenshare.channel.existing.error=Hol' up
|
||||
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.help.description=Shows you the link to share your screen.
|
||||
commands.misc.serverstats.title=Serverstats
|
||||
commands.misc.serverstats.description=This message contains some information about `%extra%`
|
||||
commands.misc.serverstats.help.description=Shows information about a server.
|
||||
commands.misc.profile.error.title=Not found
|
||||
commands.misc.profile.error.description=I can't find the specified user.
|
||||
commands.misc.profile.help.description=Shows some information about the specified user.
|
||||
commands.misc.code.success.title=Invite code information
|
||||
commands.misc.code.success.description=This message contains some information about the specified invite code.
|
||||
commands.misc.code.error.title=Code not found
|
||||
commands.misc.code.error.description=I can't find the specified invite code.
|
||||
commands.misc.code.help.description=Shows information about a invite code.
|
||||
commands.misc.moveall.success.title=Successfully moved
|
||||
commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
|
||||
commands.misc.moveall.error.equals.title=Not twice
|
||||
commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
|
||||
commands.misc.moveall.error.source.int.title=Invalid ID
|
||||
commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
|
||||
commands.misc.moveall.error.target.int.title=Invalid ID
|
||||
commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
|
||||
commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
|
||||
commands.misc.corona.help.description=Shows the newest stats of COVID-19
|
||||
commands.moderation.ban.success.title=Successfully banned
|
||||
commands.moderation.ban.success.description=I successfully baned %extra%
|
||||
commands.moderation.ban.error.title=Not possible
|
||||
commands.moderation.ban.myself.error.description=I can not ban myself\!
|
||||
commands.moderation.ban.yourself.error.description=You can not ban yourself\!
|
||||
commands.moderation.ban.massban.success.description=I successfully banned %extra% members\!
|
||||
commands.moderation.ban.help.description=Bans one or more users from the server.
|
||||
commands.moderation.clear.all.success.title=Successfully deleted
|
||||
commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
|
||||
commands.moderation.clear.number.error.title=Invalid number
|
||||
commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
|
||||
commands.moderation.clear.success.title=Successfully cleared
|
||||
commands.moderation.clear.success.description.singular=Successfully deleted one message.
|
||||
commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
|
||||
commands.moderation.clear.message.error.title=No messages\!
|
||||
commands.moderation.clear.message.error.description=There are no messages in this channel.
|
||||
commands.moderation.clear.help.description=Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title=%extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
|
||||
commands.moderation.prefix.error.description=The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description=Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title=Successfully activated
|
||||
commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.activate.error.title=Already activated
|
||||
commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
|
||||
commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
|
||||
commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
|
||||
commands.moderation.invitedetect.deactivate.error.title=Already deactivated
|
||||
commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
|
||||
commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
|
||||
commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
|
||||
commands.moderation.kick.success.description=I successfully kicked %extra%.
|
||||
commands.moderation.kick.error.title=Not possible
|
||||
commands.moderation.kick.myself.error.description=I can not kick myself\!
|
||||
commands.moderation.kick.yourself.error.description=You can't kick yourself.
|
||||
commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
|
||||
commands.moderation.kick.help.description=Kicks one or more user from the server.
|
||||
commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
|
||||
commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
|
||||
commands.moderation.nick.success.description=I successfully nicked %extra%.
|
||||
commands.moderation.nick.myself.success.description=I successfully changed my nickname.
|
||||
commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
|
||||
commands.moderation.nick.help.description=Rename a one or more user.
|
||||
commands.moderation.regionchange.regions.title=All regions
|
||||
commands.moderation.regionchange.success.title=Successfully set region
|
||||
commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
|
||||
commands.moderation.regionchange.help.description=Changes the server region to locked regions.
|
||||
commands.moderation.role.add.success.title=Successfully added role(s)
|
||||
commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
|
||||
commands.moderation.role.remove.success.title=Successfully removed role(s)
|
||||
commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
|
||||
commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
|
||||
commands.moderation.rules.setup.title=Set up rules
|
||||
commands.moderation.rules.setup.description=Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
|
||||
commands.moderation.rules.channel.error.title=Channel not found
|
||||
commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
|
||||
commands.moderation.rules.rules.title=Rules message
|
||||
commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
|
||||
commands.moderation.rules.role.title=Role to assign/remove
|
||||
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.role.error.title=Role does not exist
|
||||
commands.moderation.rules.role.error.description=The specified role does not exist on this server.
|
||||
commands.moderation.rules.role.permission.error.title=No permission
|
||||
commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
|
||||
commands.moderation.rules.guild.error.title=Wrong Guild
|
||||
commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
|
||||
commands.moderation.rules.emote.accept.title=Custom Accept Emote
|
||||
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.emote.decline.title=Custom Decline Emote
|
||||
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.emote.error.access.description=I can not access the custom emote(s).
|
||||
commands.moderation.rules.emote.error.equal.title=Emotes are equal
|
||||
commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
|
||||
commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
|
||||
commands.moderation.rules.emoji.error.description=The given emote can't be used.
|
||||
commands.moderation.rules.success.title=Successfully set the rules
|
||||
commands.moderation.rules.success.description=I successfully send the rules in %extra%.
|
||||
commands.moderation.rules.error.message.title=Can't write messages
|
||||
commands.moderation.rules.error.message.description=I can not write messages in the specified channel
|
||||
commands.moderation.rules.error.permission.title=No permission
|
||||
commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
|
||||
commands.moderation.rules.error.interact.title=Can't interact
|
||||
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.help.description=Setup the rules on your Discord server
|
||||
commands.moderation.starboard.success.title=Successfully set the Channel\!
|
||||
commands.moderation.starboard.help.description=Sets the starboard channel.
|
||||
commands.moderation.editrules.channel.title=Rules channel
|
||||
commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
|
||||
commands.moderation.editrules.channel.found.error.title=Channel not found
|
||||
commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
|
||||
commands.moderation.editrules.channel.message.error.title=No rules message
|
||||
commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
|
||||
commands.moderation.editrules.message.title=New message
|
||||
commands.moderation.editrules.message.description=Please send me the new rules message now.
|
||||
commands.moderation.editrules.error.title=No rules
|
||||
commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
|
||||
commands.moderation.editrules.success.title=Successfully changed
|
||||
commands.moderation.editrules.success.description=I successfully changed the rules
|
||||
commands.moderation.editrules.help.description=Edits the rules message.
|
||||
commands.music.bass.error.connected.title=No channel
|
||||
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.bass.help.description=Change the bass for the song which is played at the moment.
|
||||
commands.music.join.success.title=Successfully connected
|
||||
commands.music.join.success.description=I successfully connected to %extra%.
|
||||
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.join.error.connecting.trying.title=Already trying to connect
|
||||
commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
|
||||
commands.music.join.error.channel.title=No Voice Channel
|
||||
commands.music.join.error.channel.description=You aren't in a Voice Channel.
|
||||
commands.music.join.error.permission.title=No permission
|
||||
commands.music.join.error.permission.description=I am not allowed to join your voice channel.
|
||||
commands.music.join.help.description=Joins your voice channel.
|
||||
commands.music.leave.success.title=Successfully disconnected
|
||||
commands.music.leave.success.description=I successfully disconnected from the Voice Channel
|
||||
commands.music.leave.error.channel.title=No channel
|
||||
commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
|
||||
commands.music.leave.error.connected.tile=Not connected
|
||||
commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
|
||||
commands.music.leave.help.description=Leaves your voice channel.
|
||||
commands.music.play.load.title=%extra% Now loading %extra%
|
||||
commands.music.play.load.description=Trying to load the song...
|
||||
commands.music.play.success.loading.title=%extra% Now playing %extra%
|
||||
commands.music.play.success.queueing.title=%extra% Added to queue %extra%
|
||||
commands.music.play.success.title=Title
|
||||
commands.music.play.success.author=Author
|
||||
commands.music.play.success.length=Length
|
||||
commands.music.play.success.tracks=Tracks
|
||||
commands.music.play.error.load.title=%extra% Load failed %extra%
|
||||
commands.music.play.error.load.description=Unfortunately I can not load the given song
|
||||
commands.music.play.error.match.title=%extra% No matches %extra%
|
||||
commands.music.play.error.match.description=I can not find a song named this on YouTube
|
||||
commands.music.play.success.unpause.title=Successfully continued
|
||||
commands.music.play.success.unpause.description=I successfully continued playing the song.
|
||||
commands.music.play.error.connected.title=No channel
|
||||
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.help.description=Plays the specified song.
|
||||
commands.music.stop.success.title=Successfully stopped
|
||||
commands.music.stop.success.description=I successfully stopped the song.
|
||||
commands.music.stop.error.connected.title=No channel
|
||||
commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
|
||||
commands.music.stop.help.description=Stops the song.
|
||||
commands.music.info.success.title=Track info
|
||||
commands.music.info.error.title=No playing track
|
||||
commands.music.info.error.description=I am not playing anything at the moment
|
||||
commands.music.info.help.description=Shows information about the playing song.
|
||||
commands.music.queue.error.title=No queue
|
||||
commands.music.queue.error.description=There are no queued songs at the moment
|
||||
commands.music.queue.success.title=Queue %extra%
|
||||
commands.music.queue.success.description=This is the queue\: \n %extra%
|
||||
commands.music.queue.help.description=Shows the music queue.
|
||||
commands.music.skip.success.title=Successfully skipped
|
||||
commands.music.skip.success.description=I successfully skipped to the next song
|
||||
commands.music.skip.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.skip.help.description=Skips the currently playing song.
|
||||
commands.music.volume.success.title=Successfully set
|
||||
commands.music.volume.success.description=I successfully set the new volume to %extra%
|
||||
commands.music.volume.error.int.title=Invalid number
|
||||
commands.music.volume.error.int.description=The volume have to be between 1 and 200
|
||||
commands.music.volume.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.volume.help.description=Change the volume of the music.
|
||||
commands.music.pause.success.title=Successfully paused
|
||||
commands.music.pause.success.description=I successfully paused the played song.
|
||||
commands.music.pause.error.paused.title=Already paused
|
||||
commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
|
||||
commands.music.pause.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.pause.help.description=Pause the playing song.
|
||||
commands.music.loop.success.loop.title=Successfully activated
|
||||
commands.music.loop.success.loop.description=I will now repeat the currently played song.
|
||||
commands.music.loop.success.unloop.title=Successfully deactivated
|
||||
commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
|
||||
commands.music.loop.error.connected.title=No channel
|
||||
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.loop.help.description=Repeats a song/queue.
|
||||
commands.music.echo.success.title=Successfully activated
|
||||
commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
|
||||
commands.music.echo.help.description=Sends your voice through Hadder.
|
||||
commands.nsfw.gif.error.title=GIF not showing? Click here
|
||||
commands.nsfw.img.error.title=Image not showing? Click here
|
||||
commands.nsfw.anal.help.description=Shows a random anal gif.
|
||||
commands.nsfw.bdsm.help.description=Shows a random BDSM picture
|
||||
commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
|
||||
commands.nsfw.boobs.help.description=Shows a random boob gif.
|
||||
commands.nsfw.cum.help.description=Shows a random cum gif.
|
||||
commands.nsfw.erotic.help.description=Shows a random erotic picture
|
||||
commands.nsfw.feet.help.description=Shows a random feet gif.
|
||||
commands.nsfw.fingering.help.description=Shows a random fingering gif.
|
||||
commands.nsfw.linking.help.description=Shows a random licking gif.
|
||||
commands.nsfw.porn.help.description=Shows a random porn gif.
|
||||
commands.nsfw.pussy.help.description=Shows a random pussy gif.
|
||||
commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
|
||||
commands.nsfw.solo.help.description=Shows a random solo gif.
|
||||
commands.nsfw.spank.help.description=Shows a random spank gif.
|
||||
commands.nsfw.trans.help.description=Shows a random trans picture
|
||||
commands.owner.eval.success.title=Eval Command
|
||||
commands.owner.eval.success.input=Input
|
||||
commands.owner.eval.success.output=Output
|
||||
commands.owner.eval.success.timing=Timing
|
||||
commands.owner.eval.help.description=Execute the given code
|
||||
commands.owner.guildleave.success.title=Successfully left
|
||||
commands.owner.guildleave.success.description=I successfully left %extra%.
|
||||
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.guildleave.help.description=Quit from a server
|
||||
commands.owner.reboot.help.description=Restart the bot
|
||||
commands.owner.shutdown.success.title=Shutdown
|
||||
commands.owner.shutdown.help.description=Shuts the Bot down
|
||||
commands.owner.test.success=TEST my friends
|
||||
commands.owner.test.help.description=Just a little Test Command
|
||||
commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
|
||||
commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
|
||||
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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue