diff --git a/pom.xml b/pom.xml index d8f019e..88c3108 100644 --- a/pom.xml +++ b/pom.xml @@ -16,6 +16,12 @@ + + junit + junit + 4.12 + test + net.dv8tion JDA @@ -83,6 +89,10 @@ maven-resources-plugin 3.1.0 + + maven-compiler-plugin + 3.8.1 + maven-surefire-plugin 2.22.2 diff --git a/src/main/java/com/bbn/hadder/Hadder.java b/src/main/java/com/bbn/hadder/Hadder.java index 62cf872..bf30069 100644 --- a/src/main/java/com/bbn/hadder/Hadder.java +++ b/src/main/java/com/bbn/hadder/Hadder.java @@ -87,7 +87,7 @@ public class Hadder { new RegionChangeCommand(), new AboutCommand(), new LanguageCommand(), - new StarBoardCommand()), config, helpCommand); + new SetStarBoardCommand()), config, helpCommand); builder.addEventListeners( new MentionListener(rethink), diff --git a/src/main/java/com/bbn/hadder/commands/Perm.java b/src/main/java/com/bbn/hadder/commands/Perm.java index faee03a..524f726 100644 --- a/src/main/java/com/bbn/hadder/commands/Perm.java +++ b/src/main/java/com/bbn/hadder/commands/Perm.java @@ -4,20 +4,64 @@ package com.bbn.hadder.commands; +import net.dv8tion.jda.api.Permission; + public enum Perm { BOT_OWNER() { - public boolean check() { - return true; + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getConfig().getOwners().contains(commandEvent.getAuthor().getId()); } }, - MANAGE_MESSAGES, - EMBED_MESSAGES, - BAN_MEMBERS, - KICK_MEMBERS, - MANAGE_SERVER, - MANAGE_ROLES, - CHANGE_NICKNAME, - ADMIN_PERMISSIONS + MANAGE_MESSAGES { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.MESSAGE_MANAGE); + } + }, + EMBED_MESSAGES { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.MESSAGE_EMBED_LINKS); + } + }, + BAN_MEMBERS { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.BAN_MEMBERS); + } + }, + KICK_MEMBERS { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.KICK_MEMBERS); + } + }, + MANAGE_SERVER { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.MANAGE_SERVER); + } + }, + MANAGE_ROLES { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.MANAGE_ROLES); + } + }, + CHANGE_NICKNAME { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.NICKNAME_CHANGE); + } + }, + ADMIN_PERMISSIONS { + @Override + public boolean check(CommandEvent commandEvent) { + return commandEvent.getMember().hasPermission(Permission.ADMINISTRATOR); + } + }; + public abstract boolean check(CommandEvent commandEvent); } diff --git a/src/main/java/com/bbn/hadder/commands/Perms.java b/src/main/java/com/bbn/hadder/commands/Perms.java index b2df183..2cc052e 100644 --- a/src/main/java/com/bbn/hadder/commands/Perms.java +++ b/src/main/java/com/bbn/hadder/commands/Perms.java @@ -5,5 +5,5 @@ package com.bbn.hadder.commands; public @interface Perms { - Perm[] perms() default {}; + Perm[] value() default {}; } diff --git a/src/main/java/com/bbn/hadder/commands/moderation/StarBoardCommand.java b/src/main/java/com/bbn/hadder/commands/moderation/SetStarBoardCommand.java similarity index 92% rename from src/main/java/com/bbn/hadder/commands/moderation/StarBoardCommand.java rename to src/main/java/com/bbn/hadder/commands/moderation/SetStarBoardCommand.java index fbabb35..bfd32c6 100644 --- a/src/main/java/com/bbn/hadder/commands/moderation/StarBoardCommand.java +++ b/src/main/java/com/bbn/hadder/commands/moderation/SetStarBoardCommand.java @@ -3,9 +3,10 @@ package com.bbn.hadder.commands.moderation; import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.utils.MessageEditor; +import net.dv8tion.jda.api.EmbedBuilder; import net.dv8tion.jda.api.entities.TextChannel; -public class StarBoardCommand implements Command { +public class SetStarBoardCommand implements Command { @Override public void executed(String[] args, CommandEvent event) { if (event.getMessage().getMentionedChannels().size()==1) { @@ -34,7 +35,7 @@ public class StarBoardCommand implements Command { @Override public String[] labels() { - return new String[]{"starboard"}; + return new String[]{"setstarboard"}; } @Override diff --git a/src/main/java/com/bbn/hadder/commands/owner/GuildLeaveCommand.java b/src/main/java/com/bbn/hadder/commands/owner/GuildLeaveCommand.java index 13cb60d..8b2a21e 100644 --- a/src/main/java/com/bbn/hadder/commands/owner/GuildLeaveCommand.java +++ b/src/main/java/com/bbn/hadder/commands/owner/GuildLeaveCommand.java @@ -16,17 +16,13 @@ public class GuildLeaveCommand implements Command { if (event.getConfig().getOwners().toString().contains(event.getAuthor().getId())) { if (args.length > 0) { Guild guild = event.getJDA().getGuildById(args[0]); - try { - guild.leave().queue(); - event.getTextChannel() - .sendMessage(event.getMessageEditor() - .getMessage(MessageEditor.MessageType.INFO, "commands.owner.guildleave.success.title", - "", "commands.owner.guildleave.success.description", guild.getName()) - .build()) - .queue(); - } catch (Exception e) { - event.getTextChannel().sendMessage(event.getMessageEditor().getMessage(MessageEditor.MessageType.WARNING, "commands.owner.guildleave.error.title", "", "commands.owner.guildleave.help.description", guild.getName()).build()).queue(); - } + guild.leave().queue(); + event.getTextChannel() + .sendMessage(event.getMessageEditor() + .getMessage(MessageEditor.MessageType.INFO, "commands.owner.guildleave.success.title", + "", "commands.owner.guildleave.success.description", guild.getName()) + .build()) + .queue(); } else { event.getHelpCommand().sendHelp(this, event); } diff --git a/src/main/java/com/bbn/hadder/commands/owner/TestCommand.java b/src/main/java/com/bbn/hadder/commands/owner/TestCommand.java index 54344f5..35a1427 100644 --- a/src/main/java/com/bbn/hadder/commands/owner/TestCommand.java +++ b/src/main/java/com/bbn/hadder/commands/owner/TestCommand.java @@ -2,6 +2,7 @@ package com.bbn.hadder.commands.owner; import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.CommandEvent; +import com.bbn.hadder.commands.Perm; import com.bbn.hadder.commands.Perms; import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor.MessageType; @@ -12,7 +13,7 @@ import static com.bbn.hadder.commands.Perm.BOT_OWNER; * @author Skidder / GregTCLTK */ -@Perms(perms = BOT_OWNER) +@Perms(Perm.BOT_OWNER) public class TestCommand implements Command { @Override diff --git a/src/main/java/com/bbn/hadder/core/CommandHandler.java b/src/main/java/com/bbn/hadder/core/CommandHandler.java index fef5f60..967d9c3 100644 --- a/src/main/java/com/bbn/hadder/core/CommandHandler.java +++ b/src/main/java/com/bbn/hadder/core/CommandHandler.java @@ -3,6 +3,8 @@ package com.bbn.hadder.core; import com.bbn.hadder.Rethink; import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.CommandEvent; +import com.bbn.hadder.commands.Perm; +import com.bbn.hadder.commands.Perms; import com.bbn.hadder.commands.general.HelpCommand; import com.bbn.hadder.utils.MessageEditor; import net.dv8tion.jda.api.events.message.MessageReceivedEvent; @@ -30,11 +32,16 @@ public class CommandHandler { .replaceFirst(prefix, "").replaceFirst(invoke, ""); if (argString.startsWith(" ")) argString = argString.replaceFirst(" ", ""); String[] args = argString.split(" "); - if (args.length>0&&args[0].equals("")) args = new String[0]; - cmd.executed(args, - new CommandEvent(event.getJDA(), event.getResponseNumber(), event.getMessage(), rethink, - config, this, helpCommand, new MessageEditor(rethink, event.getAuthor())) - ); + if (args.length > 0 && args[0].equals("")) args = new String[0]; + + CommandEvent commandEvent = new CommandEvent(event.getJDA(), event.getResponseNumber(), event.getMessage(), rethink, + config, this, helpCommand, new MessageEditor(rethink, event.getAuthor())); + + for (Perm perm : ((Perms) cmd).value()) { + if (!perm.check(commandEvent)) return; + } + + cmd.executed(args, commandEvent); return; } } diff --git a/src/main/resources/Translations/Translations_de.properties b/src/main/resources/Translations/Translations_de.properties index 70f5ff4..7929e62 100644 --- a/src/main/resources/Translations/Translations_de.properties +++ b/src/main/resources/Translations/Translations_de.properties @@ -2,224 +2,80 @@ # @author Skidder / GregTCLTK # -# -# @author Skidder / GregTCLTK -# +Hadder=Hadder -Hadder = Hadderino +user/id= <@User>/ +searchterm= +username= +number= +guildprefix= +<@User>=<@User> +on/off= +vc-name/id= +user+nickname=<@user> -searchterm = -username = -number = /all -guildprefix = -prefix = -vc-name/id = -user+nickname = <@user> -region = -guildid = +error=Error +none=None +success\!=Success\! -error = Error -none = None -success\! = Success\! +commands.fun.avatar.success.title=Avatar of +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=Look 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 it again later. +commands.fun.meme.help.description=Sends you a random meme. -commands.fun.avatar.success.title = Avatar of %extra% -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 = Look 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 it again later. -commands.fun.meme.help.description = Sends you a random meme. +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 you donate some money [here] +commands.general.about.help.description=Shows infos 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=Check if two strings are the same +commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\! +commands.general.help.help.description=Shows each command or explains its usage +commands.general.help.help.label=[CommandName] +commands.general.invite.success.title=Invite me\! +commands.general.invite.success.description=[Invite me here\!] +commands.general.invite.help.description=Shows the invitation to invite Hadder to your server +commands.general.ping.help.description=Shows the ping to the Discord API -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 you donate some money [here]%extra% -commands.general.about.help.description = Shows infos 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 = Check if two strings are the same -commands.general.help.field.usage = Benutzung -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! -commands.general.help.help.description = Shows each command or 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 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.help.description = Sends feedback directly to the developers. -commands.misc.feedback.success.title = Feedback successfully sent -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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! -commands.misc.github.connect.title = Connect you 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 on 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 on this Guild. -commands.misc.screenshare.help.description = Shows you the link to share your screen. - -commands.moderation.ban.success.title = %extra% Successfully banned %extra% -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 baned %extra% Members\! -commands.moderation.ban.help.description = Bans one ore more user from the server -commands.moderation.lear.all.success.title = Successfully deleted -commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. -commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! -commands.moderation.clear.success.description = 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 guild 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 guild. -commands.moderation.invitedetect.activate.error.title = Already activated -commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this guild. -commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated -commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this guild. -commands.moderation.invitedetect.deactivate.error.title = Already deactivated -commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this guild. -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 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. -commands.moderation.link.error.title = Wait that's illegal. -commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! -commands.moderation.link.request.accept.description = React with the reactions to accept or decline it -commands.moderation.link.set.title = Set the thing boi -commands.moderation.link.help.description = Links two or more servers. -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 = %extra% Successfully added role(s) %extra% -commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. -commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra% -commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. -commands.moderation.role.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 -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 -commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives 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 guild. -commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! -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.success.title = Successfully set the rules -commands.moderation.rules.success.description = I successfully send the rules in %extra%. -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.help.description = Setup the rules on your Discord server -commands.moderation.starboard.successchannel=Successfully set the Channel\! - -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.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected -commands.music.leave.success.description = I successfully disconnected from the Voice Channel -commands.music.leave.error.tile = Not connected -commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild -commands.music.leave.help.description = Leaves a voice channel - -commands.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.eval.help.usage = -commands.owner.guildleave.success.title = Successfully left -commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.help.description = Quit from a guild -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.settings.language.success.title = Language set -commands.settings.language.success.description = %extra% is your new language now. -commands.settings.language.help.description = Sets the new primary language for a user. -commands.settings.language.help.usage = -commands.settings.prefix.success.title = %extra% Successfully set %extra% -commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%. -commands.settings.prefix.help.description = Sets a new Prefix +commands.misc.feedback.title.request.title=Feedback Topic +commands.misc.feedback.title.request.description=Please send me the feedback topic. +commands.misc.feedback.description.request.title=Feedback Description +commands.misc.feedback.description.request.description=Please send me the feedback description now. +commands.misc.feedback.help.description=Sends feedback directly to the developers. +commands.misc.github.link.title=Link your GitHub Account +commands.misc.github.success.title=Information about +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.description=The GitHub API might be down at the moment\! +commands.misc.github.user.error.description=This user does not exist\! +commands.misc.github.connect.title=Connect you GH account +commands.misc.github.connect.description=Please connect your GitHub account here +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 on 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 on this Guild. +commands.misc.screenshare.help.description=Shows you the link to share your screen. commands.moderation.ban.success.title=Successfully banned commands.moderation.ban.success.description=I successfully baned diff --git a/src/main/resources/Translations/Translations_en.properties b/src/main/resources/Translations/Translations_en.properties index dfb232c..d3ce2ba 100644 --- a/src/main/resources/Translations/Translations_en.properties +++ b/src/main/resources/Translations/Translations_en.properties @@ -2,6 +2,10 @@ # @author Skidder / GregTCLTK # +# +# @author Skidder / GregTCLTK +# + Hadder = Hadder searchterm = @@ -16,7 +20,7 @@ guildid = error = Error none = None -success\! = Success\! +success! = Success! commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description = Sends the avatar of the specified member. @@ -33,18 +37,18 @@ commands.general.about.success.field.one.description = Hadder is completely free commands.general.about.help.description = Shows infos 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.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 = Check if two strings are the same commands.general.help.field.usage = Usage -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! +commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu! commands.general.help.help.description = Shows each command or 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.success.title = Invite me! +commands.general.invite.success.description = [Invite me here!]%extra% commands.general.invite.help.description = Shows the invitation to invite Hadder to your server commands.general.ping.help.description = Shows the ping to the Discord API @@ -63,28 +67,28 @@ 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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! +commands.misc.github.api.error.description = The GitHub API might be down at the moment! +commands.misc.github.user.error.description = This user does not exist! commands.misc.github.connect.title = Connect you 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 on this Guild. +commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID? \n\nNote: Make sure the Voice Channel is on 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.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 on this Guild. +commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote: Make sure the Voice Channel is on this Guild. commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.moderation.ban.success.title = %extra% Successfully banned %extra% 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 baned %extra% Members\! +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 baned %extra% Members! commands.moderation.ban.help.description = Bans one ore more user from the server commands.moderation.lear.all.success.title = Successfully deleted commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. @@ -95,7 +99,7 @@ commands.moderation.clear.message.error.description = There are no messages in t 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 guild to %extra% -commands.moderation.prefix.error.description = The prefix must not contain **"** +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 guild. @@ -109,15 +113,15 @@ commands.moderation.invitedetect.help.description = Activate or deactivate the D 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.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 69 Members\! +commands.moderation.kick.mass.success.description = I successfully kicked 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. commands.moderation.link.error.title = Wait that's illegal. commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! +commands.moderation.link.request.accept.title = ) wants to link guilds! commands.moderation.link.request.accept.description = React with the reactions to accept or decline it commands.moderation.link.set.title = Set the thing boi commands.moderation.link.help.description = Links two or more servers. @@ -136,7 +140,7 @@ commands.moderation.role.remove.success.title = %extra% Successfully removed rol 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.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 @@ -146,7 +150,7 @@ commands.moderation.rules.role.description = The rules were successfully set. Pl commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.role.error.description = The specified role does not exist on this guild. commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! +commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild! 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 @@ -170,7 +174,7 @@ commands.music.join.error.connecting.trying.description = Hadder is already tryi commands.music.join.error.channel.title = No Voice Channel commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.join.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected +commands.music.leave.success.title = = Successfully disconnected commands.music.leave.success.description = I successfully disconnected from the Voice Channel commands.music.leave.error.tile = Not connected commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild @@ -202,8 +206,6 @@ commands.owner.eval.help.description = Execute the given code commands.owner.eval.help.usage = commands.owner.guildleave.success.title = Successfully left commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.error.title = Can not leave -commands.owner.guildleave.error.description = I can not leave from this guild. Maybe this isn't a ID? commands.owner.guildleave.help.description = Quit from a guild commands.owner.reboot.help.description = Restart the bot commands.owner.shutdown.success.title = Shutdown diff --git a/src/main/resources/Translations/Translations_es.properties b/src/main/resources/Translations/Translations_es.properties index 8c367dd..b7fd562 100644 --- a/src/main/resources/Translations/Translations_es.properties +++ b/src/main/resources/Translations/Translations_es.properties @@ -2,221 +2,118 @@ # @author Skidder / GregTCLTK # -# -# @author Skidder / GregTCLTK -# +Hadder=Hadder -Hadder = Hadder +user/id= <@User>/ +searchterm= +username= +number= +guildprefix= +<@User>=<@User> +on/off= +vc-name/id= +user+nickname=<@user> -searchterm = -username = -number = /all -guildprefix = -prefix = -vc-name/id = -user+nickname = <@user> -region = -guildid = +error=Error +none=None +success\!=Success\! -error = Error -none = None -success\! = Success\! +commands.fun.avatar.success.title=Avatar of +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=Look 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 it again later. +commands.fun.meme.help.description=Sends you a random meme. -commands.fun.avatar.success.title = Avatar of %extra% -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 = Look 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 it again later. -commands.fun.meme.help.description = Sends you a random meme. +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 you donate some money [here] +commands.general.about.help.description=Shows infos 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=Check if two strings are the same +commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\! +commands.general.help.help.description=Shows each command or explains its usage +commands.general.help.help.label=[CommandName] +commands.general.invite.success.title=Invite me\! +commands.general.invite.success.description=[Invite me here\!] +commands.general.invite.help.description=Shows the invitation to invite Hadder to your server +commands.general.ping.help.description=Shows the ping to the Discord API -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 you donate some money [here]%extra% -commands.general.about.help.description = Shows infos 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 = Check if two strings are the same -commands.general.help.field.usage = Usage -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! -commands.general.help.help.description = Shows each command or 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 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.help.description=Sends feedback directly to the developers. +commands.misc.github.link.title=Link your GitHub Account +commands.misc.github.success.title=Information about +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.description=The GitHub API might be down at the moment\! +commands.misc.github.user.error.description=This user does not exist\! +commands.misc.github.connect.title=Connect you GH account +commands.misc.github.connect.description=Please connect your GitHub account here +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 on 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 on this Guild. +commands.misc.screenshare.help.description=Shows you the link to share your screen. -commands.misc.feedback.title.request.title = Feedback Topic -commands.misc.feedback.title.request.description = Please send me the feedback topic. -commands.misc.feedback.description.request.title = Feedback Description -commands.misc.feedback.description.request.description = Please send me the feedback description now. -commands.misc.feedback.help.description = Sends feedback directly to the developers. -commands.misc.feedback.success.title = Feedback successfully sent -commands.misc.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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! -commands.misc.github.connect.title = Connect you 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 on 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 on this Guild. -commands.misc.screenshare.help.description = Shows you the link to share your screen. - -commands.moderation.ban.success.title = %extra% Successfully banned %extra% -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 baned %extra% Members\! -commands.moderation.ban.help.description = Bans one ore more user from the server -commands.moderation.lear.all.success.title = Successfully deleted -commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. -commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! -commands.moderation.clear.success.description = 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 guild 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 guild. -commands.moderation.invitedetect.activate.error.title = Already activated -commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this guild. -commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated -commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this guild. -commands.moderation.invitedetect.deactivate.error.title = Already deactivated -commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this guild. -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 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. -commands.moderation.link.error.title = Wait that's illegal. -commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! -commands.moderation.link.request.accept.description = React with the reactions to accept or decline it -commands.moderation.link.set.title = Set the thing boi -commands.moderation.link.help.description = Links two or more servers. -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 = %extra% Successfully added role(s) %extra% -commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. -commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra% -commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. -commands.moderation.role.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 -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 -commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives 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 guild. -commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! -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.success.title = Successfully set the rules -commands.moderation.rules.success.description = I successfully send the rules in %extra%. -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.help.description = Setup the rules on your Discord server -commands.moderation.starboard.successchannel=Successfully set the Channel\! - -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.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected -commands.music.leave.success.description = I successfully disconnected from the Voice Channel -commands.music.leave.error.tile = Not connected -commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild -commands.music.leave.help.description = Leaves a voice channel - -commands.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.eval.help.usage = -commands.owner.guildleave.success.title = Successfully left -commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.help.description = Quit from a guild -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.settings.language.success.title = Language set -commands.settings.language.success.description = %extra% is your new language now. -commands.settings.language.help.description = Sets the new primary language for a user. -commands.settings.language.help.usage = -commands.settings.prefix.success.title = %extra% Successfully set %extra% -commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%. -commands.settings.prefix.help.description = Sets a new Prefix +commands.moderation.ban.success.title=Successfully banned +commands.moderation.ban.success.description=I successfully baned +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't ban yourself\! +commands.moderation.ban.help.description=Bans one ore more user from the server +commands.moderation.clear.number.error.description=You have to choose a number between 1 and 200\! +commands.moderation.clear.success.description=Successfully deleted 69 messages. +commands.moderation.clear.help.description=Deletes the specified number of messages. +commands.moderation.prefix.success.title=Successfully set +commands.moderation.prefix.success.description=I successfully set the new prefix for the guild to +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 guild. +commands.moderation.invitedetect.activate.error.title=Already activated +commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this guild. +commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated +commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this guild. +commands.moderation.invitedetect.deactivate.error.title=Already deactivated +commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this guild. +commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection. +commands.moderation.kick.success.title=Successfully kicked +commands.moderation.kick.success.description=I successfully kicked +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 69 Members\! +commands.moderation.kick.help.description=Kicks one or more user from the server. +commands.moderation.link.request.success.description=If i'm on this guild i sent a message to accept the link. +commands.moderation.link.error.title=Wait that's illegal. +commands.moderation.link.request.error.description=You specified the same guild as the guild on which you're reading this +commands.moderation.link.request.accept.title=Skidder wants to link guilds\! +commands.moderation.link.request.accept.description=React with the reactions to accept or decline it +commands.moderation.link.set.title=Set the thing boi +commands.moderation.link.help.description=Links two or more servers. +commands.moderation.nick.success.title=Successfully nicked +commands.moderation.nick.success.description=I successfully nicked +commands.moderation.nick.myself.success.description=I successfully changed my nickname. +commands.moderation.nick.mass.success.description=I successfully nicked 69 Members\! +commands.moderation.nick.help.description=Rename a one or more user. diff --git a/src/main/resources/Translations/Translations_fr.properties b/src/main/resources/Translations/Translations_fr.properties index 8c367dd..b7fd562 100644 --- a/src/main/resources/Translations/Translations_fr.properties +++ b/src/main/resources/Translations/Translations_fr.properties @@ -2,221 +2,118 @@ # @author Skidder / GregTCLTK # -# -# @author Skidder / GregTCLTK -# +Hadder=Hadder -Hadder = Hadder +user/id= <@User>/ +searchterm= +username= +number= +guildprefix= +<@User>=<@User> +on/off= +vc-name/id= +user+nickname=<@user> -searchterm = -username = -number = /all -guildprefix = -prefix = -vc-name/id = -user+nickname = <@user> -region = -guildid = +error=Error +none=None +success\!=Success\! -error = Error -none = None -success\! = Success\! +commands.fun.avatar.success.title=Avatar of +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=Look 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 it again later. +commands.fun.meme.help.description=Sends you a random meme. -commands.fun.avatar.success.title = Avatar of %extra% -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 = Look 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 it again later. -commands.fun.meme.help.description = Sends you a random meme. +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 you donate some money [here] +commands.general.about.help.description=Shows infos 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=Check if two strings are the same +commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\! +commands.general.help.help.description=Shows each command or explains its usage +commands.general.help.help.label=[CommandName] +commands.general.invite.success.title=Invite me\! +commands.general.invite.success.description=[Invite me here\!] +commands.general.invite.help.description=Shows the invitation to invite Hadder to your server +commands.general.ping.help.description=Shows the ping to the Discord API -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 you donate some money [here]%extra% -commands.general.about.help.description = Shows infos 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 = Check if two strings are the same -commands.general.help.field.usage = Usage -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! -commands.general.help.help.description = Shows each command or 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 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.help.description=Sends feedback directly to the developers. +commands.misc.github.link.title=Link your GitHub Account +commands.misc.github.success.title=Information about +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.description=The GitHub API might be down at the moment\! +commands.misc.github.user.error.description=This user does not exist\! +commands.misc.github.connect.title=Connect you GH account +commands.misc.github.connect.description=Please connect your GitHub account here +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 on 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 on this Guild. +commands.misc.screenshare.help.description=Shows you the link to share your screen. -commands.misc.feedback.title.request.title = Feedback Topic -commands.misc.feedback.title.request.description = Please send me the feedback topic. -commands.misc.feedback.description.request.title = Feedback Description -commands.misc.feedback.description.request.description = Please send me the feedback description now. -commands.misc.feedback.help.description = Sends feedback directly to the developers. -commands.misc.feedback.success.title = Feedback successfully sent -commands.misc.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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! -commands.misc.github.connect.title = Connect you 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 on 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 on this Guild. -commands.misc.screenshare.help.description = Shows you the link to share your screen. - -commands.moderation.ban.success.title = %extra% Successfully banned %extra% -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 baned %extra% Members\! -commands.moderation.ban.help.description = Bans one ore more user from the server -commands.moderation.lear.all.success.title = Successfully deleted -commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. -commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! -commands.moderation.clear.success.description = 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 guild 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 guild. -commands.moderation.invitedetect.activate.error.title = Already activated -commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this guild. -commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated -commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this guild. -commands.moderation.invitedetect.deactivate.error.title = Already deactivated -commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this guild. -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 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. -commands.moderation.link.error.title = Wait that's illegal. -commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! -commands.moderation.link.request.accept.description = React with the reactions to accept or decline it -commands.moderation.link.set.title = Set the thing boi -commands.moderation.link.help.description = Links two or more servers. -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 = %extra% Successfully added role(s) %extra% -commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. -commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra% -commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. -commands.moderation.role.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 -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 -commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives 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 guild. -commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! -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.success.title = Successfully set the rules -commands.moderation.rules.success.description = I successfully send the rules in %extra%. -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.help.description = Setup the rules on your Discord server -commands.moderation.starboard.successchannel=Successfully set the Channel\! - -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.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected -commands.music.leave.success.description = I successfully disconnected from the Voice Channel -commands.music.leave.error.tile = Not connected -commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild -commands.music.leave.help.description = Leaves a voice channel - -commands.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.eval.help.usage = -commands.owner.guildleave.success.title = Successfully left -commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.help.description = Quit from a guild -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.settings.language.success.title = Language set -commands.settings.language.success.description = %extra% is your new language now. -commands.settings.language.help.description = Sets the new primary language for a user. -commands.settings.language.help.usage = -commands.settings.prefix.success.title = %extra% Successfully set %extra% -commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%. -commands.settings.prefix.help.description = Sets a new Prefix +commands.moderation.ban.success.title=Successfully banned +commands.moderation.ban.success.description=I successfully baned +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't ban yourself\! +commands.moderation.ban.help.description=Bans one ore more user from the server +commands.moderation.clear.number.error.description=You have to choose a number between 1 and 200\! +commands.moderation.clear.success.description=Successfully deleted 69 messages. +commands.moderation.clear.help.description=Deletes the specified number of messages. +commands.moderation.prefix.success.title=Successfully set +commands.moderation.prefix.success.description=I successfully set the new prefix for the guild to +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 guild. +commands.moderation.invitedetect.activate.error.title=Already activated +commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this guild. +commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated +commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this guild. +commands.moderation.invitedetect.deactivate.error.title=Already deactivated +commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this guild. +commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection. +commands.moderation.kick.success.title=Successfully kicked +commands.moderation.kick.success.description=I successfully kicked +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 69 Members\! +commands.moderation.kick.help.description=Kicks one or more user from the server. +commands.moderation.link.request.success.description=If i'm on this guild i sent a message to accept the link. +commands.moderation.link.error.title=Wait that's illegal. +commands.moderation.link.request.error.description=You specified the same guild as the guild on which you're reading this +commands.moderation.link.request.accept.title=Skidder wants to link guilds\! +commands.moderation.link.request.accept.description=React with the reactions to accept or decline it +commands.moderation.link.set.title=Set the thing boi +commands.moderation.link.help.description=Links two or more servers. +commands.moderation.nick.success.title=Successfully nicked +commands.moderation.nick.success.description=I successfully nicked +commands.moderation.nick.myself.success.description=I successfully changed my nickname. +commands.moderation.nick.mass.success.description=I successfully nicked 69 Members\! +commands.moderation.nick.help.description=Rename a one or more user. diff --git a/src/main/resources/Translations/Translations_ru.properties b/src/main/resources/Translations/Translations_ru.properties index 8c367dd..b7fd562 100644 --- a/src/main/resources/Translations/Translations_ru.properties +++ b/src/main/resources/Translations/Translations_ru.properties @@ -2,221 +2,118 @@ # @author Skidder / GregTCLTK # -# -# @author Skidder / GregTCLTK -# +Hadder=Hadder -Hadder = Hadder +user/id= <@User>/ +searchterm= +username= +number= +guildprefix= +<@User>=<@User> +on/off= +vc-name/id= +user+nickname=<@user> -searchterm = -username = -number = /all -guildprefix = -prefix = -vc-name/id = -user+nickname = <@user> -region = -guildid = +error=Error +none=None +success\!=Success\! -error = Error -none = None -success\! = Success\! +commands.fun.avatar.success.title=Avatar of +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=Look 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 it again later. +commands.fun.meme.help.description=Sends you a random meme. -commands.fun.avatar.success.title = Avatar of %extra% -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 = Look 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 it again later. -commands.fun.meme.help.description = Sends you a random meme. +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 you donate some money [here] +commands.general.about.help.description=Shows infos 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=Check if two strings are the same +commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\! +commands.general.help.help.description=Shows each command or explains its usage +commands.general.help.help.label=[CommandName] +commands.general.invite.success.title=Invite me\! +commands.general.invite.success.description=[Invite me here\!] +commands.general.invite.help.description=Shows the invitation to invite Hadder to your server +commands.general.ping.help.description=Shows the ping to the Discord API -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 you donate some money [here]%extra% -commands.general.about.help.description = Shows infos 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 = Check if two strings are the same -commands.general.help.field.usage = Usage -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! -commands.general.help.help.description = Shows each command or 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 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.help.description=Sends feedback directly to the developers. +commands.misc.github.link.title=Link your GitHub Account +commands.misc.github.success.title=Information about +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.description=The GitHub API might be down at the moment\! +commands.misc.github.user.error.description=This user does not exist\! +commands.misc.github.connect.title=Connect you GH account +commands.misc.github.connect.description=Please connect your GitHub account here +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 on 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 on this Guild. +commands.misc.screenshare.help.description=Shows you the link to share your screen. -commands.misc.feedback.title.request.title = Feedback Topic -commands.misc.feedback.title.request.description = Please send me the feedback topic. -commands.misc.feedback.description.request.title = Feedback Description -commands.misc.feedback.description.request.description = Please send me the feedback description now. -commands.misc.feedback.help.description = Sends feedback directly to the developers. -commands.misc.feedback.success.title = Feedback successfully sent -commands.misc.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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! -commands.misc.github.connect.title = Connect you 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 on 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 on this Guild. -commands.misc.screenshare.help.description = Shows you the link to share your screen. - -commands.moderation.ban.success.title = %extra% Successfully banned %extra% -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 baned %extra% Members\! -commands.moderation.ban.help.description = Bans one ore more user from the server -commands.moderation.lear.all.success.title = Successfully deleted -commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. -commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! -commands.moderation.clear.success.description = 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 guild 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 guild. -commands.moderation.invitedetect.activate.error.title = Already activated -commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this guild. -commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated -commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this guild. -commands.moderation.invitedetect.deactivate.error.title = Already deactivated -commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this guild. -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 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. -commands.moderation.link.error.title = Wait that's illegal. -commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! -commands.moderation.link.request.accept.description = React with the reactions to accept or decline it -commands.moderation.link.set.title = Set the thing boi -commands.moderation.link.help.description = Links two or more servers. -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 = %extra% Successfully added role(s) %extra% -commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. -commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra% -commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. -commands.moderation.role.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 -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 -commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives 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 guild. -commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! -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.success.title = Successfully set the rules -commands.moderation.rules.success.description = I successfully send the rules in %extra%. -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.help.description = Setup the rules on your Discord server -commands.moderation.starboard.successchannel=Successfully set the Channel\! - -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.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected -commands.music.leave.success.description = I successfully disconnected from the Voice Channel -commands.music.leave.error.tile = Not connected -commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild -commands.music.leave.help.description = Leaves a voice channel - -commands.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.eval.help.usage = -commands.owner.guildleave.success.title = Successfully left -commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.help.description = Quit from a guild -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.settings.language.success.title = Language set -commands.settings.language.success.description = %extra% is your new language now. -commands.settings.language.help.description = Sets the new primary language for a user. -commands.settings.language.help.usage = -commands.settings.prefix.success.title = %extra% Successfully set %extra% -commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%. -commands.settings.prefix.help.description = Sets a new Prefix +commands.moderation.ban.success.title=Successfully banned +commands.moderation.ban.success.description=I successfully baned +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't ban yourself\! +commands.moderation.ban.help.description=Bans one ore more user from the server +commands.moderation.clear.number.error.description=You have to choose a number between 1 and 200\! +commands.moderation.clear.success.description=Successfully deleted 69 messages. +commands.moderation.clear.help.description=Deletes the specified number of messages. +commands.moderation.prefix.success.title=Successfully set +commands.moderation.prefix.success.description=I successfully set the new prefix for the guild to +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 guild. +commands.moderation.invitedetect.activate.error.title=Already activated +commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this guild. +commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated +commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this guild. +commands.moderation.invitedetect.deactivate.error.title=Already deactivated +commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this guild. +commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection. +commands.moderation.kick.success.title=Successfully kicked +commands.moderation.kick.success.description=I successfully kicked +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 69 Members\! +commands.moderation.kick.help.description=Kicks one or more user from the server. +commands.moderation.link.request.success.description=If i'm on this guild i sent a message to accept the link. +commands.moderation.link.error.title=Wait that's illegal. +commands.moderation.link.request.error.description=You specified the same guild as the guild on which you're reading this +commands.moderation.link.request.accept.title=Skidder wants to link guilds\! +commands.moderation.link.request.accept.description=React with the reactions to accept or decline it +commands.moderation.link.set.title=Set the thing boi +commands.moderation.link.help.description=Links two or more servers. +commands.moderation.nick.success.title=Successfully nicked +commands.moderation.nick.success.description=I successfully nicked +commands.moderation.nick.myself.success.description=I successfully changed my nickname. +commands.moderation.nick.mass.success.description=I successfully nicked 69 Members\! +commands.moderation.nick.help.description=Rename a one or more user. diff --git a/src/main/resources/Translations/Translations_tr.properties b/src/main/resources/Translations/Translations_tr.properties index 8c367dd..b7fd562 100644 --- a/src/main/resources/Translations/Translations_tr.properties +++ b/src/main/resources/Translations/Translations_tr.properties @@ -2,221 +2,118 @@ # @author Skidder / GregTCLTK # -# -# @author Skidder / GregTCLTK -# +Hadder=Hadder -Hadder = Hadder +user/id= <@User>/ +searchterm= +username= +number= +guildprefix= +<@User>=<@User> +on/off= +vc-name/id= +user+nickname=<@user> -searchterm = -username = -number = /all -guildprefix = -prefix = -vc-name/id = -user+nickname = <@user> -region = -guildid = +error=Error +none=None +success\!=Success\! -error = Error -none = None -success\! = Success\! +commands.fun.avatar.success.title=Avatar of +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=Look 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 it again later. +commands.fun.meme.help.description=Sends you a random meme. -commands.fun.avatar.success.title = Avatar of %extra% -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 = Look 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 it again later. -commands.fun.meme.help.description = Sends you a random meme. +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 you donate some money [here] +commands.general.about.help.description=Shows infos 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=Check if two strings are the same +commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\! +commands.general.help.help.description=Shows each command or explains its usage +commands.general.help.help.label=[CommandName] +commands.general.invite.success.title=Invite me\! +commands.general.invite.success.description=[Invite me here\!] +commands.general.invite.help.description=Shows the invitation to invite Hadder to your server +commands.general.ping.help.description=Shows the ping to the Discord API -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 you donate some money [here]%extra% -commands.general.about.help.description = Shows infos 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 = Check if two strings are the same -commands.general.help.field.usage = Usage -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! -commands.general.help.help.description = Shows each command or 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 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.help.description=Sends feedback directly to the developers. +commands.misc.github.link.title=Link your GitHub Account +commands.misc.github.success.title=Information about +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.description=The GitHub API might be down at the moment\! +commands.misc.github.user.error.description=This user does not exist\! +commands.misc.github.connect.title=Connect you GH account +commands.misc.github.connect.description=Please connect your GitHub account here +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 on 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 on this Guild. +commands.misc.screenshare.help.description=Shows you the link to share your screen. -commands.misc.feedback.title.request.title = Feedback Topic -commands.misc.feedback.title.request.description = Please send me the feedback topic. -commands.misc.feedback.description.request.title = Feedback Description -commands.misc.feedback.description.request.description = Please send me the feedback description now. -commands.misc.feedback.help.description = Sends feedback directly to the developers. -commands.misc.feedback.success.title = Feedback successfully sent -commands.misc.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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! -commands.misc.github.connect.title = Connect you 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 on 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 on this Guild. -commands.misc.screenshare.help.description = Shows you the link to share your screen. - -commands.moderation.ban.success.title = %extra% Successfully banned %extra% -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 baned %extra% Members\! -commands.moderation.ban.help.description = Bans one ore more user from the server -commands.moderation.lear.all.success.title = Successfully deleted -commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. -commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! -commands.moderation.clear.success.description = 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 guild 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 guild. -commands.moderation.invitedetect.activate.error.title = Already activated -commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this guild. -commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated -commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this guild. -commands.moderation.invitedetect.deactivate.error.title = Already deactivated -commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this guild. -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 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. -commands.moderation.link.error.title = Wait that's illegal. -commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! -commands.moderation.link.request.accept.description = React with the reactions to accept or decline it -commands.moderation.link.set.title = Set the thing boi -commands.moderation.link.help.description = Links two or more servers. -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 = %extra% Successfully added role(s) %extra% -commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. -commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra% -commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. -commands.moderation.role.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 -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 -commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives 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 guild. -commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! -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.success.title = Successfully set the rules -commands.moderation.rules.success.description = I successfully send the rules in %extra%. -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.help.description = Setup the rules on your Discord server -commands.moderation.starboard.successchannel=Successfully set the Channel\! - -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.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected -commands.music.leave.success.description = I successfully disconnected from the Voice Channel -commands.music.leave.error.tile = Not connected -commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild -commands.music.leave.help.description = Leaves a voice channel - -commands.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.eval.help.usage = -commands.owner.guildleave.success.title = Successfully left -commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.help.description = Quit from a guild -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.settings.language.success.title = Language set -commands.settings.language.success.description = %extra% is your new language now. -commands.settings.language.help.description = Sets the new primary language for a user. -commands.settings.language.help.usage = -commands.settings.prefix.success.title = %extra% Successfully set %extra% -commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%. -commands.settings.prefix.help.description = Sets a new Prefix +commands.moderation.ban.success.title=Successfully banned +commands.moderation.ban.success.description=I successfully baned +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't ban yourself\! +commands.moderation.ban.help.description=Bans one ore more user from the server +commands.moderation.clear.number.error.description=You have to choose a number between 1 and 200\! +commands.moderation.clear.success.description=Successfully deleted 69 messages. +commands.moderation.clear.help.description=Deletes the specified number of messages. +commands.moderation.prefix.success.title=Successfully set +commands.moderation.prefix.success.description=I successfully set the new prefix for the guild to +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 guild. +commands.moderation.invitedetect.activate.error.title=Already activated +commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this guild. +commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated +commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this guild. +commands.moderation.invitedetect.deactivate.error.title=Already deactivated +commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this guild. +commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection. +commands.moderation.kick.success.title=Successfully kicked +commands.moderation.kick.success.description=I successfully kicked +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 69 Members\! +commands.moderation.kick.help.description=Kicks one or more user from the server. +commands.moderation.link.request.success.description=If i'm on this guild i sent a message to accept the link. +commands.moderation.link.error.title=Wait that's illegal. +commands.moderation.link.request.error.description=You specified the same guild as the guild on which you're reading this +commands.moderation.link.request.accept.title=Skidder wants to link guilds\! +commands.moderation.link.request.accept.description=React with the reactions to accept or decline it +commands.moderation.link.set.title=Set the thing boi +commands.moderation.link.help.description=Links two or more servers. +commands.moderation.nick.success.title=Successfully nicked +commands.moderation.nick.success.description=I successfully nicked +commands.moderation.nick.myself.success.description=I successfully changed my nickname. +commands.moderation.nick.mass.success.description=I successfully nicked 69 Members\! +commands.moderation.nick.help.description=Rename a one or more user. diff --git a/src/main/resources/Translations/Translations_zh.properties b/src/main/resources/Translations/Translations_zh.properties index 8c367dd..b7fd562 100644 --- a/src/main/resources/Translations/Translations_zh.properties +++ b/src/main/resources/Translations/Translations_zh.properties @@ -2,221 +2,118 @@ # @author Skidder / GregTCLTK # -# -# @author Skidder / GregTCLTK -# +Hadder=Hadder -Hadder = Hadder +user/id= <@User>/ +searchterm= +username= +number= +guildprefix= +<@User>=<@User> +on/off= +vc-name/id= +user+nickname=<@user> -searchterm = -username = -number = /all -guildprefix = -prefix = -vc-name/id = -user+nickname = <@user> -region = -guildid = +error=Error +none=None +success\!=Success\! -error = Error -none = None -success\! = Success\! +commands.fun.avatar.success.title=Avatar of +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=Look 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 it again later. +commands.fun.meme.help.description=Sends you a random meme. -commands.fun.avatar.success.title = Avatar of %extra% -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 = Look 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 it again later. -commands.fun.meme.help.description = Sends you a random meme. +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 you donate some money [here] +commands.general.about.help.description=Shows infos 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=Check if two strings are the same +commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\! +commands.general.help.help.description=Shows each command or explains its usage +commands.general.help.help.label=[CommandName] +commands.general.invite.success.title=Invite me\! +commands.general.invite.success.description=[Invite me here\!] +commands.general.invite.help.description=Shows the invitation to invite Hadder to your server +commands.general.ping.help.description=Shows the ping to the Discord API -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 you donate some money [here]%extra% -commands.general.about.help.description = Shows infos 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 = Check if two strings are the same -commands.general.help.field.usage = Usage -commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! -commands.general.help.help.description = Shows each command or 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 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.help.description=Sends feedback directly to the developers. +commands.misc.github.link.title=Link your GitHub Account +commands.misc.github.success.title=Information about +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.description=The GitHub API might be down at the moment\! +commands.misc.github.user.error.description=This user does not exist\! +commands.misc.github.connect.title=Connect you GH account +commands.misc.github.connect.description=Please connect your GitHub account here +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 on 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 on this Guild. +commands.misc.screenshare.help.description=Shows you the link to share your screen. -commands.misc.feedback.title.request.title = Feedback Topic -commands.misc.feedback.title.request.description = Please send me the feedback topic. -commands.misc.feedback.description.request.title = Feedback Description -commands.misc.feedback.description.request.description = Please send me the feedback description now. -commands.misc.feedback.help.description = Sends feedback directly to the developers. -commands.misc.feedback.success.title = Feedback successfully sent -commands.misc.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.description = The GitHub API might be down at the moment\! -commands.misc.github.user.error.description = This user does not exist\! -commands.misc.github.connect.title = Connect you 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 on 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 on this Guild. -commands.misc.screenshare.help.description = Shows you the link to share your screen. - -commands.moderation.ban.success.title = %extra% Successfully banned %extra% -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 baned %extra% Members\! -commands.moderation.ban.help.description = Bans one ore more user from the server -commands.moderation.lear.all.success.title = Successfully deleted -commands.moderation.lear.all.success.description = I successfully deleted %extra% messages. -commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! -commands.moderation.clear.success.description = 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 guild 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 guild. -commands.moderation.invitedetect.activate.error.title = Already activated -commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this guild. -commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated -commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this guild. -commands.moderation.invitedetect.deactivate.error.title = Already deactivated -commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this guild. -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 69 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.link.request.success.description = If i'm on this guild i sent a message to accept the link. -commands.moderation.link.error.title = Wait that's illegal. -commands.moderation.link.request.error.description = You specified the same guild as the guild on which you're reading this -commands.moderation.link.request.accept.title = ) wants to link guilds\! -commands.moderation.link.request.accept.description = React with the reactions to accept or decline it -commands.moderation.link.set.title = Set the thing boi -commands.moderation.link.help.description = Links two or more servers. -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 = %extra% Successfully added role(s) %extra% -commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. -commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra% -commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. -commands.moderation.role.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 -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 -commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives 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 guild. -commands.moderation.rules.guild.error.title = Wrong Guild -commands.moderation.rules.guild.error.description = The mentioned channel must be on this guild\! -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.success.title = Successfully set the rules -commands.moderation.rules.success.description = I successfully send the rules in %extra%. -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.help.description = Setup the rules on your Discord server -commands.moderation.starboard.successchannel=Successfully set the Channel\! - -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.help.description = Joins your voice channel -commands.music.leave.success.title = \= Successfully disconnected -commands.music.leave.success.description = I successfully disconnected from the Voice Channel -commands.music.leave.error.tile = Not connected -commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild -commands.music.leave.help.description = Leaves a voice channel - -commands.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.eval.help.usage = -commands.owner.guildleave.success.title = Successfully left -commands.owner.guildleave.success.description = I successfully left %extra%. -commands.owner.guildleave.help.description = Quit from a guild -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.settings.language.success.title = Language set -commands.settings.language.success.description = %extra% is your new language now. -commands.settings.language.help.description = Sets the new primary language for a user. -commands.settings.language.help.usage = -commands.settings.prefix.success.title = %extra% Successfully set %extra% -commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%. -commands.settings.prefix.help.description = Sets a new Prefix +commands.moderation.ban.success.title=Successfully banned +commands.moderation.ban.success.description=I successfully baned +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't ban yourself\! +commands.moderation.ban.help.description=Bans one ore more user from the server +commands.moderation.clear.number.error.description=You have to choose a number between 1 and 200\! +commands.moderation.clear.success.description=Successfully deleted 69 messages. +commands.moderation.clear.help.description=Deletes the specified number of messages. +commands.moderation.prefix.success.title=Successfully set +commands.moderation.prefix.success.description=I successfully set the new prefix for the guild to +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 guild. +commands.moderation.invitedetect.activate.error.title=Already activated +commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this guild. +commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated +commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this guild. +commands.moderation.invitedetect.deactivate.error.title=Already deactivated +commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this guild. +commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection. +commands.moderation.kick.success.title=Successfully kicked +commands.moderation.kick.success.description=I successfully kicked +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 69 Members\! +commands.moderation.kick.help.description=Kicks one or more user from the server. +commands.moderation.link.request.success.description=If i'm on this guild i sent a message to accept the link. +commands.moderation.link.error.title=Wait that's illegal. +commands.moderation.link.request.error.description=You specified the same guild as the guild on which you're reading this +commands.moderation.link.request.accept.title=Skidder wants to link guilds\! +commands.moderation.link.request.accept.description=React with the reactions to accept or decline it +commands.moderation.link.set.title=Set the thing boi +commands.moderation.link.help.description=Links two or more servers. +commands.moderation.nick.success.title=Successfully nicked +commands.moderation.nick.success.description=I successfully nicked +commands.moderation.nick.myself.success.description=I successfully changed my nickname. +commands.moderation.nick.mass.success.description=I successfully nicked 69 Members\! +commands.moderation.nick.help.description=Rename a one or more user.