mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
update english language
This commit is contained in:
parent
0ecc36bfcd
commit
4eea8f08fb
151 changed files with 1107 additions and 999 deletions
|
@ -15,8 +15,8 @@ moment.relativeTimeThreshold("h", 60);
|
|||
moment.relativeTimeThreshold("d", 24);
|
||||
moment.relativeTimeThreshold("M", 12);
|
||||
|
||||
// Creates Atlanta class
|
||||
class Atlanta extends Client {
|
||||
// Creates JaBa class
|
||||
class JaBa extends Client {
|
||||
constructor (options) {
|
||||
super(options);
|
||||
this.config = require("../config"); // Load the config file
|
||||
|
@ -337,4 +337,4 @@ class Atlanta extends Client {
|
|||
};
|
||||
};
|
||||
|
||||
module.exports = Atlanta;
|
||||
module.exports = JaBa;
|
|
@ -30,7 +30,7 @@ class Stats extends Command {
|
|||
.addField(this.client.customEmojis.voice+" "+message.translate("general/stats:MUSIC_TITLE"), message.translate("general/stats:MUSIC_CONTENT", { count: this.client.voice.connections.size }))
|
||||
.addField(message.translate("general/stats:CREDITS_TITLE"), message.translate("general/stats:CREDITS_CONTENT", {
|
||||
donators: [ ":(" ].join("\n"),
|
||||
translators: [ "`Jonny_Bro#4226` (:flag_ru:)", "`[ДАННЫЕ УДАЛЕНЫ]#2789` (:flag_ua:)" ].join("\n")
|
||||
translators: [ "`Jonny_Bro#4226` (:flag_ru:)", "`[ДАННЫЕ УДАЛЕНЫ]#2789` (:flag_ua:)", "`FaxoNfuckyou#9398` и `Jonny_Bro#4226` (:flag_us:)" ].join("\n")
|
||||
}));
|
||||
|
||||
statsEmbed.addField(this.client.customEmojis.link+" "+message.translate("general/stats:LINKS_TITLE"), message.translate("misc:STATS_FOOTER", {
|
||||
|
|
|
@ -8,7 +8,7 @@ module.exports = class {
|
|||
async run (guild) {
|
||||
if (this.client.config.proMode) {
|
||||
if ((!this.client.config.proUsers.includes(guild.ownerID) || this.guilds.filter((g) => g.ownerID === guild.ownerID) > 1) && guild.ownerID !== this.client.config.owner.id) {
|
||||
this.client.logger.log(`${guild.ownerID} tried to invite Atlanta on its server.`);
|
||||
this.client.logger.log(`${guild.ownerID} tried to invite JaBa on its server.`);
|
||||
return guild.leave();
|
||||
};
|
||||
};
|
||||
|
|
6
index.js
6
index.js
|
@ -17,9 +17,9 @@ if (config.apiKeys.sentryDSN) {
|
|||
};
|
||||
};
|
||||
|
||||
// Load Atlanta class
|
||||
const Atlanta = require("./base/Atlanta"),
|
||||
client = new Atlanta();
|
||||
// Load JaBa class
|
||||
const JaBa = require("./base/JaBa"),
|
||||
client = new JaBa();
|
||||
|
||||
const init = async () => {
|
||||
// Search for all commands
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"CONFIRMATION": ":warning: | **Loading a backup will replace the actual server with the saved one.**\n\n:arrow_right_hook: *Answer by sending `confirm` to confirm this action!*",
|
||||
"START_LOADING": "Backup loading started!",
|
||||
"LOAD_SUCCESS": "Backup successfully loaded!",
|
||||
"TITLE_INFOS": "Backup Information",
|
||||
"TITLE_INFO": "Backup Information",
|
||||
"TITLE_ID": "ID",
|
||||
"TITLE_SERVER_ID": "Server ID",
|
||||
"TITLE_SIZE": "Size",
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"DESCRIPTION": "Toggle goodbye messages!",
|
||||
"USAGE": "{{prefix}}goodbye",
|
||||
"EXAMPLES": "{{prefix}}goodbye",
|
||||
"MISSING_STATUS": "You must specify an action between `edit` and `off`",
|
||||
"DEFAULT_MESSAGE": "Goodbye {user}! We're now {membercount} without you... :'(",
|
||||
"TEST_SUCCESS": "Test executed!",
|
||||
"FORM_1": "**In which channel will goodbye messages be sent?**\n\n:arrow_right_hook: *Answer by mentioning a channel!*",
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"FORM_2": "**Please enter your desired welcome message.**\n\n**If you want to:**\n*-* __Mention the user__: {user}\n*-* __Get the member count__: {membercount}\n*-* __Get the server name__: {server}\n\n**Usage example:**\nWelcome to {server}, {user}! We are now {membercount}!\n:fast_forward:\nWelcome to {{guildName}}, {{author}}! We are now {{memberCount}}!",
|
||||
"FORM_3": "**Do you want a great welcome image too?**\n\n:arrow_right_hook: *Answer by sending `yes` or `no`!*",
|
||||
"FORM_SUCCESS": "**Alright, done!**\n\n:arrow_right_hook: *Answer by sending `{{prefix}}welcome test` to preview your custom welcome message!*",
|
||||
"MAX_CHARACT": "Your message must be under 1800 symbols!",
|
||||
"DISABLED": "**Goodbye messages have just been disabled!**\n\n:arrow_right_hook: *Answer by sending `{{prefix}}configuration` to see the updated server configuration!*",
|
||||
"IMG_WELCOME": "Welcome in {{server}}!",
|
||||
"IMG_NB": "- {{memberCount}}th member!",
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
"CLAIM_SALARY": "Claim your salary 10 times!",
|
||||
"MARRY": "Find your half and marry!",
|
||||
"SLOTS": "Win 3 times in a row in slots!",
|
||||
"TIP": "Keep Atlanta alive by tipping!",
|
||||
"TIP": "Keep JaBa alive by tipping!",
|
||||
"REP": "Reach 20 reputation points!",
|
||||
"INVITE": "Invite Atlanta on your server!",
|
||||
"INVITE": "Invite JaBa on your server!",
|
||||
"TITLE": "🔥 Achievements",
|
||||
"PROGRESS": "Progress: {{now}}/{{total}} ({{percent}}%)"
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "The Atlanta casino",
|
||||
"DESCRIPTION": "The JaBa casino",
|
||||
"USAGE": "{{prefix}}slots [amount]",
|
||||
"EXAMPLES": "{{prefix}}slots\n{{prefix}}slots 10",
|
||||
"DEFEAT": "**{{username}}** used {{money}} credit(s) and lost everything.",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"DESCRIPTION": "I'm telling you the truth!",
|
||||
"USAGE": "{{prefix}}8ball [question]",
|
||||
"EXAMPLES": "{{prefix}}8ball Is Atlanta the best Discord bot?",
|
||||
"EXAMPLES": "{{prefix}}8ball Is JaBa the best Discord bot?",
|
||||
"ERR_QUESTION": "You must enter a question!",
|
||||
"RESPONSE_1": "I'm sure of it.",
|
||||
"RESPONSE_2": "it's definitely safe.",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"DESCRIPTION": "How much love is there between two people?\n*This is a fun command, not to be taken seriously*",
|
||||
"USAGE": "{{prefix}}lovecalc [@member1] (@member2)",
|
||||
"EXAMPLES": "{{prefix}}lovecalc @Jonny_Bro#4226\n{{prefix}}lovecalc @Jonny_Bro#4226 @Atlanta#6770",
|
||||
"EXAMPLES": "{{prefix}}lovecalc @Jonny_Bro#4226\n{{prefix}}lovecalc @Jonny_Bro#4226 @JaBa#9042",
|
||||
"MISSING": "You must mention two members!",
|
||||
"CONTENT": "There's **{{percent}}%** of love between **{{firstUsername}}** and **{{secondUsername}}**!\n**Congrats!**"
|
||||
}
|
5
languages/en-US/games/awkword.json
Normal file
5
languages/en-US/games/awkword.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Awkword with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}awkword",
|
||||
"EXAMPLES": "{{prefix}}awkword"
|
||||
}
|
5
languages/en-US/games/betrayal.json
Normal file
5
languages/en-US/games/betrayal.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Betrayal.io with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}betrayal",
|
||||
"EXAMPLES": "{{prefix}}betrayal"
|
||||
}
|
5
languages/en-US/games/checkers.json
Normal file
5
languages/en-US/games/checkers.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Checkers In The Park with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}checkers",
|
||||
"EXAMPLES": "{{prefix}}checkers"
|
||||
}
|
5
languages/en-US/games/chess.json
Normal file
5
languages/en-US/games/chess.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Chess In The Park with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}chess",
|
||||
"EXAMPLES": "{{prefix}}chess"
|
||||
}
|
5
languages/en-US/games/doodlecrew.json
Normal file
5
languages/en-US/games/doodlecrew.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Doodle Crew with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}doodlecrew",
|
||||
"EXAMPLES": "{{prefix}}doodlecrew"
|
||||
}
|
5
languages/en-US/games/fishing.json
Normal file
5
languages/en-US/games/fishing.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Fishington.io with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}fishing",
|
||||
"EXAMPLES": "{{prefix}}fishing"
|
||||
}
|
5
languages/en-US/games/lettertile.json
Normal file
5
languages/en-US/games/lettertile.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Letter Tile with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}lettertile",
|
||||
"EXAMPLES": "{{prefix}}letttertile"
|
||||
}
|
5
languages/en-US/games/poker.json
Normal file
5
languages/en-US/games/poker.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Poker Night with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}poker",
|
||||
"EXAMPLES": "{{prefix}}poker"
|
||||
}
|
5
languages/en-US/games/spellcast.json
Normal file
5
languages/en-US/games/spellcast.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play SpellCast with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}spellcast",
|
||||
"EXAMPLES": "{{prefix}}spellcast"
|
||||
}
|
5
languages/en-US/games/wordsnack.json
Normal file
5
languages/en-US/games/wordsnack.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Play Words Snack with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}wordsnack",
|
||||
"EXAMPLES": "{{prefix}}wordsnack"
|
||||
}
|
5
languages/en-US/games/youtube.json
Normal file
5
languages/en-US/games/youtube.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Watch Youtube with friends using Discord Together!",
|
||||
"USAGE": "{{prefix}}youtube",
|
||||
"EXAMPLES": "{{prefix}}youtube"
|
||||
}
|
|
@ -17,5 +17,5 @@
|
|||
"MATCH": "Match",
|
||||
"KILLS": "Kills",
|
||||
"KILL": "Kill",
|
||||
"FOOTER": "By Atlanta using fortnitetracker.com"
|
||||
"FOOTER": "By JaBa using fortnitetracker.com"
|
||||
}
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
"DAILY": "DAILY",
|
||||
"FEATURED": "FEATURED",
|
||||
"DATE": "{{date}} Fortnite shop",
|
||||
"FOOTER": "Fortnite Shop by Atlanta"
|
||||
"FOOTER": "Fortnite Shop by JaBa"
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"DESCRIPTION": "Shows Atlanta's Github repository information!",
|
||||
"DESCRIPTION": "Shows JaBa's Github repository information!",
|
||||
"USAGE": "{{prefix}}github",
|
||||
"EXAMPLES": "{{prefix}}github",
|
||||
"CLICK_HERE": "Click here to access the github of Atlanta",
|
||||
"CLICK_HERE": "Click here to access the github of JaBa",
|
||||
"LANGUAGE": "Programming language",
|
||||
"OWNER": "Atlanta's repository owner"
|
||||
"OWNER": "JaBa's repository owner"
|
||||
}
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"DESCRIPTION": "Shows Atlanta links!",
|
||||
"DESCRIPTION": "Shows JaBa links!",
|
||||
"USAGE": "{{prefix}}invite (copy)",
|
||||
"EXAMPLES": "{{prefix}}invite\n{{prefix}}invite copy",
|
||||
"LINKS": "Atlanta links",
|
||||
"LINKS": "JaBa links",
|
||||
"TIP": "Send `{{prefix}}invite copy` to be able to copy the invite link!",
|
||||
"ADD": "Invite Atlanta",
|
||||
"VOTE": "Vote for Atlanta",
|
||||
"ADD": "Invite JaBa",
|
||||
"VOTE": "Vote for JaBa",
|
||||
"SUPPORT": "Get Support"
|
||||
}
|
|
@ -4,6 +4,6 @@
|
|||
"EXAMPLES": "{{prefix}}remindme 24h Work command\n{{prefix}}remindme 3m Take the pasta out of the pan!",
|
||||
"MISSING_MESSAGE": "You must enter a message!",
|
||||
"SAVED": "Reminder saved, you will receive a message at the end of the time!",
|
||||
"TITLE": "Atlanta Reminder",
|
||||
"TITLE": "JaBa Reminder",
|
||||
"CREATED": "Message created {{time}}"
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"DESCRIPTION": "Shows information about the server!",
|
||||
"USAGE": "{{prefix}}serverinfo [ID/Name]",
|
||||
"EXAMPLES": "{{prefix}}serverinfo Atlanta\n{{prefix}}serverinfo",
|
||||
"EXAMPLES": "{{prefix}}serverinfo JaBa\n{{prefix}}serverinfo",
|
||||
"AFK_CHANNEL": "AFK channel",
|
||||
"NO_AFK_CHANNEL": "No AFK channel",
|
||||
"MEMBERS": "{{count}} members",
|
||||
|
|
|
@ -13,5 +13,5 @@
|
|||
"CREDITS_TITLE": ":heart: • __Acknowledgements & credits__",
|
||||
"CREDITS_CONTENT": "Thanks to [Icons8](https://icons8.com/) for almost all the emojis!\n__**Donators**__:\n{{donators}}\n__**Translators**__:\n{{translators}}",
|
||||
"LINKS_TITLE": "• __Links__",
|
||||
"MADE": "Atlanta is an open source bot developed by @Jonny_Bro#4226!"
|
||||
"MADE": "JaBa is an bot developed by @Jonny_Bro#4226!"
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
{
|
||||
"ERR_OCCURRED": "Something went wrong... Please retry again later!",
|
||||
"PLEASE_WAIT": "Please wait a few seconds...",
|
||||
"COMMAND_DISABLED": "This command is currently disabled!",
|
||||
"CLICK_HERE": "Click here to start {{activity}} in {{channel}}",
|
||||
"TIMES_UP": "Time's up! Please send the command again!",
|
||||
"INVALID_YES_NO": "You must send \"yes\" or \"no\"!",
|
||||
"INVALID_CHANNEL": "Please specify a valid channel!",
|
||||
|
@ -10,10 +11,11 @@
|
|||
"INVALID_NUMBER_RANGE": "Please specify a valid number between **{{min}}** and **{{max}}**!",
|
||||
"STATS_FOOTER": "[Dashboard]({{dashboardLink}}) ● [Donate]({{donateLink}}) ● [Invite]({{inviteLink}}) ● [Server]({{supportLink}}) ● [Github]({{githubLink}})",
|
||||
"BOT_USER": "This user is a bot!",
|
||||
"NO_PERMS": "You must have an administration rights to perform this action!",
|
||||
"NO_REASON_PROVIDED": "No reason provided",
|
||||
"NO_USER_FOUND_ID": "No user on Discord has the ID `{{id}}`!",
|
||||
"VOTE_DM": "⬆️ Hello {{user}}, thanks for voting!\nHere's your reward: 40 credits (on the support server)!",
|
||||
"VOTE_LOGS": "⬆️ **{{usertag}}** (`{{userid}}`) voted for **Atlanta** and won **40** credits, thank you!\n<https://discordbots.org/bot/557445719892688897/vote>",
|
||||
"VOTE_LOGS": "⬆️ **{{usertag}}** (`{{userid}}`) voted for **JaBa** and won **40** credits, thank you!\n<https://discordbots.org/bot/557445719892688897/vote>",
|
||||
"HELLO_SERVER": "Hello **{{username}}**, my prefix on this server is `{{prefix}}`. Use `{{prefix}}help` to get the list of the commands!",
|
||||
"HELLO_DM": "Hello **{{username}}**, as you are currently in direct message you don't need to add a prefix before command name.",
|
||||
"GUILD_ONLY": "This command is only available on a server!",
|
||||
|
@ -22,7 +24,7 @@
|
|||
"RESTRICTED_CHANNEL": "Commands are not allowed in {{channel}}!",
|
||||
"EVERYONE_MENTION": "You are not allowed to mention everyone or here in the commands.",
|
||||
"NSFW_COMMAND": "You must execute this command in a channel that allows NSFW!",
|
||||
"OWNER_ONLY": "Only the owner of Atlanta can do these commands!",
|
||||
"OWNER_ONLY": "Only the owner of JaBa can do these commands!",
|
||||
"COOLDOWNED": "You must wait **{{seconds}}** second(s) to be able to run this command again!",
|
||||
"CANNOT_DM": "I don't have permission to send you private messages... Please update your privacy settings!"
|
||||
}
|
8
languages/en-US/music/clip.json
Normal file
8
languages/en-US/music/clip.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"DESCRIPTION": "Play clip",
|
||||
"USAGE": "{{prefix}}clip [file-name]",
|
||||
"EXAMPLES": "{{prefix}}clip haha",
|
||||
"NO_ARG": "Set file name",
|
||||
"NO_FILE": "File {{file}} is missing!",
|
||||
"ACTIVE_QUEUE": "Can't play clip, another queue is active at the moment"
|
||||
}
|
6
languages/en-US/music/clips.json
Normal file
6
languages/en-US/music/clips.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"DESCRIPTION": "Show all available sounds",
|
||||
"USAGE": "{{prefix}}clips",
|
||||
"EXAMPLES": "{{prefix}}clips",
|
||||
"EMBED_TITLE": "**Clip list**"
|
||||
}
|
8
languages/en-US/music/loop.json
Normal file
8
languages/en-US/music/loop.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"DESCRIPTION": "Turn on/off loop of queue/single track!",
|
||||
"USAGE": "{{prefix}}loop [queue/song]",
|
||||
"EXAMPLES": "{{prefix}}loop queue\n{{prefix}}loop song",
|
||||
"NO_ARG": "Select: `queue` or `song`!",
|
||||
"QUEUE": "Repeating queue is **{{loop}}**!",
|
||||
"SONG": "Repeating current track is **{{loop}}**!"
|
||||
}
|
8
languages/en-US/nsfw/hentai.json
Normal file
8
languages/en-US/nsfw/hentai.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"DESCRIPTION": "Get NSFW gif",
|
||||
"USAGE": "{{prefix}}hentai (category/help)",
|
||||
"EXAMPLES": "{{prefix}}hentai\n{{prefix}}hentai help",
|
||||
"NOCATEGORY": "If you want to see something from certain category, type its name after command.\nUse **`{{prefix}}hentai help`** to see all categories\n",
|
||||
"HELP_1": "Available categories (You can also use command without any arguments)",
|
||||
"HELP_2": "```neko\ncum\nsolo\nanal\nyuri\nblowjob - bj\npussy\nclassic\nfutanari - futa\n```"
|
||||
}
|
5
languages/en-US/owner/say.json
Normal file
5
languages/en-US/owner/say.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Send a message on behalf of the bot!",
|
||||
"USAGE": "{{prefix}}say [text] ++ (ID/channel-name) ++ (ID/server-name)",
|
||||
"EXAMPLES": "{{prefix}}say Hello World!\n{{prefix}}say Hello World! ++ 123456789098765432"
|
||||
}
|
|
@ -12,5 +12,19 @@
|
|||
"ru_ru",
|
||||
"ru_RU"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "eu-US",
|
||||
"nativeName": "Английский",
|
||||
"moment": "en",
|
||||
"defaultMomentFormat": "MMMM Do YYYY",
|
||||
"default": false,
|
||||
"aliases": [
|
||||
"English",
|
||||
"en",
|
||||
"en-us",
|
||||
"en_us",
|
||||
"en_US"
|
||||
]
|
||||
}
|
||||
]
|
Loading…
Reference in a new issue