init commit

This commit is contained in:
zino
2021-02-16 23:07:41 +01:00
parent ec3fc78e0f
commit 12b4ef5db4
5000 changed files with 2596132 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.customcommands.addcom.usage', 'Usage: !addcom [command] [response]');
$.lang.register('discord.customcommands.addcom.err', 'That command already exists.');
$.lang.register('discord.customcommands.addcom.success', 'Command !$1 has been added!');
$.lang.register('discord.customcommands.editcom.usage', 'Usage: !editcom [command] [response]');
$.lang.register('discord.customcommands.editcom.404', 'That command does not exist.');
$.lang.register('discord.customcommands.editcom.success', 'Command !$1 has been edited!');
$.lang.register('discord.customcommands.delcom.usage', 'Usage: !delcom [command] [response]');
$.lang.register('discord.customcommands.delcom.404', 'That command does not exist.');
$.lang.register('discord.customcommands.delcom.success', 'Command !$1 has been removed!');
$.lang.register('discord.customcommands.permcom.usage', 'Usage: !permcom [command] [permission]');
$.lang.register('discord.customcommands.permcom.404', 'That command does not exist.');
$.lang.register('discord.customcommands.permcom.syntax.error', 'Usage: !permcom [command] [permission] - Either 0 which is everyone or 1 is administrators.');
$.lang.register('discord.customcommands.permcom.success', 'Permission for command !$1 has been set to permission $2');
$.lang.register('discord.customcommands.coolcom.usage', 'Usage: !coolcom [command] [time in seconds]');
$.lang.register('discord.customcommands.coolcom.404', 'That command does not exist.');
$.lang.register('discord.customcommands.coolcom.removed', 'Cooldown for command !$1 has been removed.');
$.lang.register('discord.customcommands.coolcom.success', 'Cooldown for command !$1 has been set to $2 seconds.');
$.lang.register('discord.customcommands.channelcom.usage', 'Usage: !channelcom [command] [channel / --global / --list] - Separate the channels with commas (no spaces) for multiple.');
$.lang.register('discord.customcommands.channelcom.global', 'Command !$1 will now work in every channel.');
$.lang.register('discord.customcommands.channelcom.success', 'Command !$1 will now only work in channel(s): $2.');
$.lang.register('discord.customcommands.channelcom.404', 'No channels are set on that command.');
$.lang.register('discord.customcommands.commands', 'Commands: $1');
$.lang.register('discord.customcommands.bot.commands', 'Bot Commands: $1');
$.lang.register('discord.customcommands.pricecom.usage', 'Usage: !pricecom [command] [amount]');
$.lang.register('discord.customcommands.pricecom.success', 'Cost for command !$1 has been set to $2.');
$.lang.register('discord.customcommands.aliascom.usage', 'Usage: !aliascom [alias] [command]');
$.lang.register('discord.customcommands.aliascom.success', 'Command !$2 has been aliased to !$1');
$.lang.register('discord.customcommands.delalias.usage', 'Usage: !delalias [alias]');
$.lang.register('discord.customcommands.delalias.success', 'Alias !$1 has been removed.');
$.lang.register('discord.customcommands.404', 'That command does not exist.');
$.lang.register('discord.customcommands.alias.404', 'That alias does not exist.');
$.lang.register('discord.customcommands.customapi.404', 'The !$1 command requires parameters.');
$.lang.register('discord.customcommands.customapijson.err', '!$1: An error occurred processing the API.');

View File

@@ -0,0 +1,25 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.accountlink.usage.nolink', 'In order to use this module, make sure the bot is not blocked from private messaging you on Discord.\nTo link your Discord and Twitch accounts please use the following command **!account link**');
$.lang.register('discord.accountlink.usage.link', 'Your Discord account is currently linked to **https://twitch.tv/$1**.\nYou can change it using **!account link** or remove it using **!account remove**');
$.lang.register('discord.accountlink.link', '**NOTE: This expires in 10 minutes**.\nTo complete the process of linking your Discord and Twitch accounts, please login to Twitch, go to **https://twitch.tv/$1**, and send the command **!account link $2**');
$.lang.register('discord.accountlink.link.relink', '**NOTE: This expires in 10 minutes**.\n**This will automatically remove your previous account link.** \nTo complete the process of linking your Discord account to your Twitch account, please login to Twitch, go to **https://twitch.tv/$1**, and send the command **!account link $2**');
$.lang.register('discord.accountlink.link.success', 'Your Discord account has been successfully linked to **https://twitch.tv/$1**.\nPlease note that if you change your name on Twitch, you will have to redo this.');
$.lang.register('discord.accountlink.link.fail', 'Sorry, that is an invalid or expired token. Make sure you copy the account linking command EXACTLY. If you are sure you typed it correctly, please restart the account linking process from a chat channel in the Discord server.');
$.lang.register('discord.accountlink.link.remove', 'Your Discord account has been unlinked from all Twitch accounts.\nTo link your Discord account to your Twitch account, use **!account link** in a regular chat channel on the Discord server');
$.lang.register('discord.accountlink.linkrequired', 'Sorry, that command is only available in Discord after your Twitch account has been linked using **!account**');

View File

@@ -0,0 +1,23 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.cooldown.coolcom.usage', 'Usage: !coolcom [command] [seconds] [type (global / user)] - Using -1 for the seconds removes the cooldown.');
$.lang.register('discord.cooldown.coolcom.set', 'Cooldown for command !$1 has been set to $2 seconds.');
$.lang.register('discord.cooldown.coolcom.remove', 'Cooldown for command !$1 has been removed.');
$.lang.register('discord.cooldown.cooldown.usage', 'Usage: !cooldown [setdefault]');
$.lang.register('discord.cooldown.default.set', 'The default cooldown for commands without one has been set to $1 seconds.');
$.lang.register('discord.cooldown.default.usage', 'Usage: !cooldown setdefault [seconds] - Set a cooldown for commands that don\'t have one.');

View File

@@ -0,0 +1,28 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.misc.module.usage', 'Usage: !module [enable / disable / list]');
$.lang.register('discord.misc.module.enabled', 'Module: $1 has been enabled.');
$.lang.register('discord.misc.module.disabled', 'Module: $1 has been disabled.');
$.lang.register('discord.misc.module.list', 'Discord Module list: \r\n $1');
$.lang.register('discord.misc.module.404', 'That module does not exist: $1');
$.lang.register('discord.misc.game.set.usage', 'Usage: !setgame [game name]');
$.lang.register('discord.misc.game.set', 'Bot game updated to: $1');
$.lang.register('discord.misc.game.stream.set.usage', 'Usage: !setstream [twitch url] [game name]');
$.lang.register('discord.misc.game.stream.set', 'Bot stream changed to: $1 and game to: $2');
$.lang.register('discord.misc.game.removed', 'Bot game has been removed.');
$.lang.register('discord.misc.reconnect', 'A Discord reconnect is being attempted.');

View File

@@ -0,0 +1,62 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('moderation.usage', 'Usage: !moderation [links / caps / spam / blacklist / whitelist / cleanup / logs]');
$.lang.register('moderation.links.usage', 'Usage: !moderation links [toggle / permittime]');
$.lang.register('moderation.links.toggle', 'Link moderation has been $1.');
$.lang.register('moderation.links.permit.time.usage', 'Usage: !moderation links permittime [seconds]');
$.lang.register('moderation.links.permit.time.set', 'Permit time has been set to $1 seconds!');
$.lang.register('moderation.caps.usage', 'Usage: !moderation caps [toggle / triggerlength / limitpercent]');
$.lang.register('moderation.caps.toggle', 'Cap moderation has been $1.');
$.lang.register('moderation.caps.trigger.usage', 'Usage: !moderation caps triggerlength [characters]');
$.lang.register('moderation.caps.trigger.set', 'Caps trigger limit has been set to $1%');
$.lang.register('moderation.caps.limit.usage', 'Usage: !moderation caps limitpercent [percent]');
$.lang.register('moderation.caps.limit.set', 'Caps limit has been set to $1%');
$.lang.register('moderation.long.message.usage', 'Usage: !moderation longmessage [toggle / limit]');
$.lang.register('moderation.long.message.toggle', 'Message length moderation has been $1.');
$.lang.register('moderation.long.message.limit.usage', 'Usage: !moderation longmessage limit [characters]');
$.lang.register('moderation.long.message.limit.set', 'Long message limit has been set to $1 characters!');
$.lang.register('moderation.spam.usage', 'Usage: !moderation spam [toggle / limit]');
$.lang.register('moderation.spam.toggle', 'Spam moderation has been $1.');
$.lang.register('moderation.spam.limit.usage', 'Usage: !moderation spam limit [messages]');
$.lang.register('moderation.spam.limit.set', 'Spam limit has been set to $1 messages!');
$.lang.register('moderation.blacklist.usage', 'Usage: !moderation blacklist [add / remove / list]');
$.lang.register('moderation.blacklist.add.usage', 'Usage: !moderation blacklist add [phrase]');
$.lang.register('moderation.blacklist.add.success', 'Phrase added the to the blacklist!');
$.lang.register('moderation.blacklist.remove.usage', 'Usage: !moderation blacklist remove [phrase]');
$.lang.register('moderation.blacklist.remove.404', 'That phrase is not in the blacklist.');
$.lang.register('moderation.blacklist.remove.success', 'Phrase removed from the blacklist!');
$.lang.register('moderation.blacklist.list.404', 'The blacklist is empty.');
$.lang.register('moderation.blacklist.list', 'Blacklist: ```$1```');
$.lang.register('moderation.whitelist.usage', 'Usage: !moderation whitelist [add / remove / list]');
$.lang.register('moderation.whitelist.add.usage', 'Usage: !moderation whitelist add [phrase or username#discriminator]');
$.lang.register('moderation.whitelist.add.success', 'Phrase or username added the to the whitelist!');
$.lang.register('moderation.whitelist.remove.usage', 'Usage: !moderation whitelist remove [phrase or username#discriminator]');
$.lang.register('moderation.whitelist.remove.404', 'That phrase or username is not in the whitelist.');
$.lang.register('moderation.whitelist.remove.success', 'Phrase or username removed from the whitelist!');
$.lang.register('moderation.whitelist.list.404', 'The whitelist is empty.');
$.lang.register('moderation.whitelist.list', 'Whitelist: ```$1```');
$.lang.register('moderation.cleanup.usage', 'Usage: !moderation cleanup [channel] [amount]');
$.lang.register('moderation.cleanup.err.amount', 'You can only delete 2 to 10000 messages.');
$.lang.register('moderation.cleanup.err.unknownchannel', 'Unknown channel: $1. Try discord\'s auto-completion.');
$.lang.register('moderation.cleanup.failed', 'Failed to perform bulk message deletion: Currently deleting messages.');
$.lang.register('moderation.cleanup.failed.err', 'Failed to perform bulk message deletion.');
$.lang.register('moderation.cleanup.done', 'Deleted $1 messages!');
$.lang.register('moderation.logs.toggle.usage', 'Usage: !moderation logs [toggle / channel] - Will toggle Twitch moderation logs being posted in Discord.');
$.lang.register('moderation.logs.toggle', 'Twitch moderation logs have been $1. **[Requires bot restart]**');
$.lang.register('moderation.logs.channel.usage', 'Usage: !moderation logs channel [channel name]');
$.lang.register('moderation.logs.channel.set', 'Twitch moderation log announcements will now be made in channel $1');

View File

@@ -0,0 +1,27 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.rolemanager.usage', 'Usage: !rolemanager [togglesyncpermissions / togglesyncranks / blacklist]');
$.lang.register('discord.rolemanager.permission.sync.on', 'Bot permissions will now be synced with users who have their account linked with the bot.');
$.lang.register('discord.rolemanager.permission.sync.off', 'Bot permissions will no longer be synced.');
$.lang.register('discord.rolemanager.ranks.sync.on', 'Ranks will now be synced with users who have their account linked with the bot.');
$.lang.register('discord.rolemanager.ranks.sync.off', 'Ranks will no longer be synced.');
$.lang.register('discord.rolemanager.blacklist.usage', 'Usage: !rolemanager blacklist [add / remove] [permission or rank] - Blacklist a ranks or permissions from being set.');
$.lang.register('discord.rolemanager.blacklist.add.usage', 'Usage: !rolemanager blacklist add [permission or rank] - Blacklist a ranks or permissions from being set.');
$.lang.register('discord.rolemanager.blacklist.add.success', 'Group $1 has been added to the blacklist!');
$.lang.register('discord.rolemanager.blacklist.remove.usage', 'Usage: !rolemanager blacklist remove [permission or rank]');
$.lang.register('discord.rolemanager.blacklist.remove.success', 'Group $1 has been removed from the blacklist.');

View File

@@ -0,0 +1,32 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.gambling.need.points', 'You don\'t have that many $1.');
$.lang.register('discord.gambling.error.max', 'You\'re only allowed to gamble a maximum of $1.');
$.lang.register('discord.gambling.error.min', 'You\'re only allowed to gamble a minimum of $1.');
$.lang.register('discord.gambling.lost', '$1 rolled $2 and lost $3. $5'); // Use $4 for the points the user has remaining
$.lang.register('discord.gambling.won', '$1 rolled $2 and won $3! $5'); // Use $4 for the points the user has remaining
$.lang.register('discord.gambling.usage', 'Usage: !gamble [amount]');
$.lang.register('discord.gambling.set.max.usage', 'Usage: !gambling setmax [amount]');
$.lang.register('discord.gambling.set.max', 'Set max gambling to $1!');
$.lang.register('discord.gambling.set.min.usage', 'Usage: !gambling setmin [amount]');
$.lang.register('discord.gambling.set.min', 'Set minimum gambling to $1!');
$.lang.register('discord.gambling.win.range.usage', 'Usage: !gambling setwinningrange [range]');
$.lang.register('discord.gambling.win.range', 'Set gambling win range to $1-100 lose range to 1-$2');
$.lang.register('discord.gambling.percent.usage', 'Usage: !gambling setgainpercent [amount]');
$.lang.register('discord.gambling.percent', 'Set gambling gain percent to $1%');
$.lang.register('discord.gambling.main.usage', 'Usage: !gambling [setmax / setmin / setwinningrange / setgainpercent]');

View File

@@ -0,0 +1,26 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.roll.rolled', '$1 rolls a [$2] and [$3]. ');
$.lang.register('discord.roll.doubleone', 'Snake eyes for $1! ');
$.lang.register('discord.roll.doubletwo', 'Hard four for $1! ');
$.lang.register('discord.roll.doublethree', 'Hard six for $1! ');
$.lang.register('discord.roll.doublefour', 'Hard eight for $1! ');
$.lang.register('discord.roll.doublefive', 'Hard ten for $1! ');
$.lang.register('discord.roll.doublesix', 'Boxcars to the max!!! $1! ');
$.lang.register('discord.roll.rewards.usage', 'Usage: !roll rewards [double 1\'s] [2\'s] [3\'s] [4\'s] [5\'s] [6\'s]. Currently: $1');
$.lang.register('discord.roll.rewards.success', 'Updated rewards for the dice roll.');

View File

@@ -0,0 +1,21 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.slotmachine.result.start', '$1: [ $2 $3 $4 ] ');
$.lang.register('discord.slotmachine.result.win', ' +$1 ');
$.lang.register('discord.slotmachine.rewards.usage', 'Usage: !slot rewards [val1] [val2] [val3] [val4] [val5]. Currently: $1');
$.lang.register('discord.slotmachine.rewards.success', 'Updated rewards for the slot machine.');

View File

@@ -0,0 +1,25 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.bitshandler.usage', 'Usage: !bitshandler [toggle / message / channel]');
$.lang.register('discord.bitshandler.bits.toggle', 'Bit announcements have been $1.');
$.lang.register('discord.bitshandler.bits.message.usage', 'Usage: !bitshandler message [message] - Tags: (name) (amount)');
$.lang.register('discord.bitshandler.bits.message.set', 'Bits announcements message set to: $1');
$.lang.register('discord.bitshandler.bits.channel.usage', 'Usage: !bitshandler channel [channel name]');
$.lang.register('discord.bitshandler.bits.channel.set', 'Bit announcements will now be made in channel $1');
$.lang.register('discord.bitshandler.bits.embed.title', 'New Cheer!');
$.lang.register('discord.bitshandler.bits.embed.messagetitle', 'Message:');

View File

@@ -0,0 +1,27 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.cliphandler.toggle.off', 'Clips announcements have been disabled.');
$.lang.register('discord.cliphandler.toggle.on', 'Clips announcements have been enabled.');
$.lang.register('discord.cliphandler.message.usage', 'Usage: !clipsmessage (message) - Tags: (name), (url)');
$.lang.register('discord.cliphandler.message.set', 'Clips message has been set to: $1.');
$.lang.register('discord.cliphandler.channel.usage', 'Usage: !clipschannel (channel). Currently: $1');
$.lang.register('discord.cliphandler.channel.set', 'Clips channel has been set to: $1.');
$.lang.register('discord.cliphandler.noclip', 'No clip found');
$.lang.register('discord.cliphandler.lastclip', 'Last Clip: $1');
$.lang.register('discord.cliphandler.topclip', 'Today\'s Most Viewed Clip: $1');
$.lang.register('discord.cliphandler.clip.embedtitle', 'New Clip!');

View File

@@ -0,0 +1,24 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.followhandler.usage', 'Usage: !followhandler [toggle / message / channel]');
$.lang.register('discord.followhandler.follow.toggle', 'Follow announcements have been $1.');
$.lang.register('discord.followhandler.follow.message.usage', 'Usage: !followhandler message [message] - Tag: (name)');
$.lang.register('discord.followhandler.follow.message.set', 'Follow announcements message set to: $1');
$.lang.register('discord.followhandler.follow.channel.usage', 'Usage: !followhandler channel [channel name]');
$.lang.register('discord.followhandler.follow.channel.set', 'Follow announcements will now be made in channel $1');
$.lang.register('discord.followhandler.follow.embedtitle', 'New Follower!');

View File

@@ -0,0 +1,27 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.hosthandler.usage', 'Usage: !hosthandler [toggle / hostmessage / autohostmessage / channel]');
$.lang.register('discord.hosthandler.host.toggle', 'Hosts announcements have been $1.');
$.lang.register('discord.hosthandler.host.message.usage', 'Usage: !hosthandler hostmessage [message] - Tags: (name) (viewers)');
$.lang.register('discord.hosthandler.host.message.set', 'Host message set to: $1');
$.lang.register('discord.hosthandler.autohost.message.usage', 'Usage: !hosthandler autohostmessage [message] - Tags: (name) (viewers)');
$.lang.register('discord.hosthandler.autohost.message.set', 'Auto-Host message set to: $1.');
$.lang.register('discord.hosthandler.channel.usage', 'Usage: !hosthandler channel [channel name]');
$.lang.register('discord.hosthandler.channel.set', 'Host announcements will now be made in channel $1');
$.lang.register('discord.hosthandler.host.embedtitle', 'New Host!');
$.lang.register('discord.hosthandler.auto.host.embedtitle', 'New Auto-Host!');

View File

@@ -0,0 +1,26 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.keywordhandler.usage', 'Usage: !keyword [add / edit / remove]');
$.lang.register('discord.keywordhandler.add.usage', 'Usage: !keyword add [keyword] [response]');
$.lang.register('discord.keywordhandler.add.error', 'That keyword already exists.');
$.lang.register('discord.keywordhandler.add.success', 'Keyword: "$1" has been added!');
$.lang.register('discord.keywordhandler.edit.usage', 'Usage: !keyword edit [keyword] [response]');
$.lang.register('discord.keywordhandler.404', 'That keyword does not exist.');
$.lang.register('discord.keywordhandler.edit.success', 'Keyword: "$1" has been edited!');
$.lang.register('discord.keywordhandler.remove.usage', 'Usage: !keyword remove [keyword]');
$.lang.register('discord.keywordhandler.remove.success', 'Keyword: "$1" has been removed!');

View File

@@ -0,0 +1,24 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.streamelementshandler.usage', 'Usage: !streamelementshandler [toggle / message / channel]');
$.lang.register('discord.streamelementshandler.toggle', 'StreamElements donation announcements have been $1.');
$.lang.register('discord.streamelementshandler.message.usage', 'Usage: !streamelementshandler message [message] - Tags: (name) (amount) (currency) (message)');
$.lang.register('discord.streamelementshandler.message.set', 'StreamElements donation message set to: $1');
$.lang.register('discord.streamelementshandler.channel.usage', 'Usage: !streamelementshandler channel [channel name]');
$.lang.register('discord.streamelementshandler.channel.set', 'StreamElements donation annoucements will now be made in channel $1');
$.lang.register('discord.streamelementshandler.embed.title', 'New Tip!');

View File

@@ -0,0 +1,41 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.streamhandler.usage', 'Usage: !streamhandler [toggleonline / onlinemessage / toggleoffline / offlinemessage / togglegame / gamemessage / togglebotstatus / channel / toggledeletemessage]');
$.lang.register('discord.streamhandler.online.toggle', 'Online announcements have been $1.');
$.lang.register('discord.streamhandler.online.message.usage', 'Usage: !streamhandler onlinemessage [message] - Tags: (name)');
$.lang.register('discord.streamhandler.online.message.set', 'Online announcement message set to: $1');
$.lang.register('discord.streamhandler.offline.toggle', 'Offline announcements have been $1.');
$.lang.register('discord.streamhandler.offline.message.usage', 'Usage: !streamhandler offlinemessage [message] - Tags: (name)');
$.lang.register('discord.streamhandler.offline.message.set', 'Offline announcement message set to: $1');
$.lang.register('discord.streamhandler.game.toggle', 'Game change announcements have been $1');
$.lang.register('discord.streamhandler.game.message.usage', 'Usage: !streamhandler gamemessage [message] - Tags: (name) (url)');
$.lang.register('discord.streamhandler.game.message.set', 'Game change announcement message set to: $1');
$.lang.register('discord.streamhandler.channel.usage', 'Usage: !streamhandler channel [channel name]');
$.lang.register('discord.streamhandler.channel.set', 'Stream annoucements will now be made in channel $1');
$.lang.register('discord.streamhandler.delete.toggle', 'Automatically delete the online message after the stream ends and the offline message when a new stream starts: $1');
$.lang.register('discord.streamhandler.bot.game.toggle', 'Bot stream status has been $1.');
$.lang.register('discord.streamhandler.common.title', 'Stream Status');
$.lang.register('discord.streamhandler.common.game', 'Now Playing');
$.lang.register('discord.streamhandler.common.uptime', 'Stream Uptime');
$.lang.register('discord.streamhandler.offline.game', 'Last Game');
$.lang.register('discord.streamhandler.offline.viewers', 'Viewers');
$.lang.register('discord.streamhandler.offline.chatters', 'Chatters');
$.lang.register('discord.streamhandler.offline.followers', 'Followers');
$.lang.register('discord.streamhandler.offline.viewers.stat', 'Average - $1 High - $2');
$.lang.register('discord.streamhandler.offline.chatters.stat', 'Average - $1 High - $2');
$.lang.register('discord.streamhandler.offline.followers.stat', 'Session - $1 Total - $2');

View File

@@ -0,0 +1,24 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.streamlabshandler.usage', 'Usage: !streamlabshandler [toggle / message / channel]');
$.lang.register('discord.streamlabshandler.toggle', 'StreamLabs donation announcements have been $1.');
$.lang.register('discord.streamlabshandler.message.usage', 'Usage: !streamlabshandler message [message] - Tags: (name) (amount) (currency) (message)');
$.lang.register('discord.streamlabshandler.message.set', 'StreamLabs donation message set to: $1');
$.lang.register('discord.streamlabshandler.channel.usage', 'Usage: !streamlabshandler channel [channel name]');
$.lang.register('discord.streamlabshandler.channel.set', 'StreamLabs donation annoucements will now be made in channel $1');
$.lang.register('discord.streamlabshandler.embed.title', 'New Tip!');

View File

@@ -0,0 +1,36 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.subscribehandler.usage', 'Usage: !subscribehandler [giftsubmessage / submessage / primemessage / resubmessage / giftsubtoggle / subtoggle / primetoggle / resubtoggle / channel]');
$.lang.register('discord.subscribehandler.sub.toggle', 'Subscriber annoucements have been $1.');
$.lang.register('discord.subscribehandler.giftsub.toggle', 'Gifted subscriber annoucements have been $1.');
$.lang.register('discord.subscribehandler.prime.toggle', 'Twitch Prime subscriber annoucements have been $1.');
$.lang.register('discord.subscribehandler.resub.toggle', 'Re-subscriber annoucements have been $1.');
$.lang.register('discord.subscribehandler.sub.message.usage', 'Usage: !subscribehandler submessage [message] - Tag: (name)');
$.lang.register('discord.subscribehandler.sub.message.set', 'Subscriber annoucement message set to: $1');
$.lang.register('discord.subscribehandler.giftsub.message.usage', 'Usage: !subscribehandler giftsubmessage [message] - Tag: (name)');
$.lang.register('discord.subscribehandler.giftsub.message.set', 'Gifted subscriber annoucement message set to: $1');
$.lang.register('discord.subscribehandler.prime.sub.message.usage', 'Usage: !subscribehandler primemessage [message] - Tag: (name)');
$.lang.register('discord.subscribehandler.prime.sub.message.set', 'Twitch Prime subscriber annoucement message set to: $1');
$.lang.register('discord.subscribehandler.resub.message.usage', 'Usage: !subscribehandler resubmessage [message] - Tags: (name) (months)');
$.lang.register('discord.subscribehandler.resub.message.set', 'Re-subscriber annoucement message set to: $1');
$.lang.register('discord.subscribehandler.channel.usage', 'Usage: !subscribehandler channel [channel name]');
$.lang.register('discord.subscribehandler.channel.set', 'Subscriber annoucements will now be made in channel $1');
$.lang.register('discord.subscribehandler.resubscriber.embedtitle', 'New Resubscriber!');
$.lang.register('discord.subscribehandler.subscriber.embedtitle', 'New Subscriber!');
$.lang.register('discord.subscribehandler.giftsubscriber.embedtitle', 'New Gifted Subscription!');
$.lang.register('discord.subscribehandler.primesubscriber.embedtitle', 'New Prime Subscriber!');

View File

@@ -0,0 +1,24 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.tipeeestreamhandler.usage', 'Usage: !tipeeestreamhandler [toggle / message / channel]');
$.lang.register('discord.tipeeestreamhandler.toggle', 'TipeeeStream donation announcements have been $1.');
$.lang.register('discord.tipeeestreamhandler.message.usage', 'Usage: !tipeeestreamhandler message [message] - Tags: (name) (amount) (currency) (formattedamount) (message)');
$.lang.register('discord.tipeeestreamhandler.message.set', 'TipeeeStream donation message set to: $1');
$.lang.register('discord.tipeeestreamhandler.channel.usage', 'Usage: !tipeeestreamhandler channel [channel name]');
$.lang.register('discord.tipeeestreamhandler.channel.set', 'TipeeeStream donation announcements will now be made in channel $1');
$.lang.register('discord.tipeeestreamhandler.embed.title', 'New Tip!');

View File

@@ -0,0 +1,22 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.twitterhandler.tweet', '[Twitter Feed From]');
$.lang.register('discord.twitterhandler.usage', 'Usage: !twitterhandler [toggle / channel]');
$.lang.register('discord.twitterhandler.toggle', 'Twitter annoucements have been $1.');
$.lang.register('discord.twitterhandler.channel.usage', 'Usage: !twitterhandler channel [channel name]');
$.lang.register('discord.twitterhandler.channel.set', 'Twitter annoucements will now be made in channel $1');

View File

@@ -0,0 +1,36 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.customcommandlogs.sender', 'By');
$.lang.register('discord.customcommandlogs.add.command', 'Custom command created');
$.lang.register('discord.customcommandlogs.add.response', 'Response');
$.lang.register('discord.customcommandlogs.edit.command', 'Custom command edited');
$.lang.register('discord.customcommandlogs.edit.response', 'New response');
$.lang.register('discord.customcommandlogs.delete.command', 'Custom command deleted');
$.lang.register('discord.customcommandlogs.alias.command', 'Custom alias created');
$.lang.register('discord.customcommandlogs.alias.target', 'To');
$.lang.register('discord.customcommandlogs.alias.delete.command', 'Custom alias deleted');
$.lang.register('discord.customcommandlogs.set.perm.command', 'Command permissions updated');
$.lang.register('discord.customcommandlogs.set.perm.group', 'New group');
$.lang.register('discord.customcommandlogs.set.price.command', 'Command price updated');
$.lang.register('discord.customcommandlogs.set.price.amount', 'New price');
$.lang.register('discord.customcommandlogs.set.pay.command', 'Command reward updated');
$.lang.register('discord.customcommandlogs.set.pay.amount', 'New reward');
$.lang.register('discord.customcommandlogs.disable.command', 'Command disabled');
$.lang.register('discord.customcommandlogs.enable.command', 'Command enabled');
$.lang.register('discord.customcommandlogs.reset.command', 'Command counter reset');
$.lang.register('discord.customcommandlogs.reset.count', 'New value');

View File

@@ -0,0 +1,28 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.greetingssystem.usage', 'Usage: !greetingssystem [jointoggle / parttoggle / joinmessage / partmessage / joinrole / channel]');
$.lang.register('discord.greetingssystem.join.toggle', 'Join announcements have been $1.');
$.lang.register('discord.greetingssystem.part.toggle', 'Part announcements have been $1.');
$.lang.register('discord.greetingssystem.join.message.usage', 'Usage: !greetingssystem joinmessage [message] - Tags: (name), (role), and (@name)');
$.lang.register('discord.greetingssystem.join.message.set', 'Join announcements message has been set to: $1.');
$.lang.register('discord.greetingssystem.part.message.usage', 'Usage: !greetingssystem partmessage [message] - Tags: (name) and (@name)');
$.lang.register('discord.greetingssystem.part.message.set', 'Part announcements message has been set to: $1.');
$.lang.register('discord.greetingssystem.channel.usage', 'Usage: !greetingssystem channel [channel name]');
$.lang.register('discord.greetingssystem.channel.set', 'Greeting announcements will now be made in channel $1');
$.lang.register('discord.greetingssystem.joinrole.usage', 'Usage: !greetingssystem joinrole [role name]');
$.lang.register('discord.greetingssystem.joinrole.set', 'Default role has been set to $1');

View File

@@ -0,0 +1,20 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$.lang.register('discord.pointsystem.self.points', 'You currently have $1.'); // Use $2 to display the users time and $3 for the user's rank. The rank also has his name by default.
$.lang.register('discord.pointsystem.other.points', '$1 currently has $2.'); // Use $3 to display the users time and $4 for the user's rank. The rank also has his name by default.
$.lang.register('discord.pointsystem.no.points.other', 'That user currently has no $1.');

View File

@@ -0,0 +1,63 @@
$.lang.register('discord.promotesystem.cmd.promote.usage', '!promote add [short bio] | delete - Add or delete yourself from being promoted.');
$.lang.register('discord.promotesystem.cmd.promote.noselfmanage', 'No one is allowed to manage themselves, please speak to a moderator to be added or deleted.');
$.lang.register('discord.promotesystem.cmd.promote.nochannels', 'Ask an admin to set a promote channel with !promote channel and/or !promote streamchannel');
$.lang.register('discord.promotesystem.cmd.promote.revoked', 'You are no longer allowed to add yourself.');
$.lang.register('discord.promotesystem.cmd.promote.add.nobio', 'You need to provide a short biography or use the keyword \'none\' (!promote add none).');
$.lang.register('discord.promotesystem.cmd.promote.add.success', 'You ($1) will now be promoted');
$.lang.register('discord.promotesystem.cmd.promote.del.success', 'You ($1) will no longer be promoted');
$.lang.register('discord.promotesystem.cmd.promoteadm.usage', '!promoteadm add | delete | so | channel | streamchannel | revoke | allow | toggleselfmanage | togglestats | togglebanner | list | setinterval');
$.lang.register('discord.promotesystem.cmd.promoteadm.nochannels', 'Set channels with !promoteadm channel and/or !promoteadm streamchannel');
$.lang.register('discord.promotesystem.cmd.promoteadm.noacct', 'That account does not appear to exist in Twitch: $1');
$.lang.register('discord.promotesystem.cmd.promoteadm.add.nouser', 'Who do you wish to promote?');
$.lang.register('discord.promotesystem.cmd.promoteadm.add.nobio', 'You need to provide a short biography or use the keyword \'none\' (!promoteadm add user none).');
$.lang.register('discord.promotesystem.cmd.promoteadm.add.success', '$1 will now be promoted');
$.lang.register('discord.promotesystem.cmd.promoteadm.del.nouser', 'Who you wish to remove from being promoted?');
$.lang.register('discord.promotesystem.cmd.promoteadm.del.success', '$1 will no longer be promoted');
$.lang.register('discord.promotesystem.cmd.promoteadm.channel.nochannel', 'Use which channel for promotions? To remove current channel use !promoteadm channel clear');
$.lang.register('discord.promotesystem.cmd.promoteadm.channel.cleared', 'Promote channel has been cleared.');
$.lang.register('discord.promotesystem.cmd.promoteadm.channel.success', 'Promote channel has been set to: $1');
$.lang.register('discord.promotesystem.cmd.promoteadm.streamchannel.nochannel', 'Use which channel for stream announcements? To remove current channel use !promoteadm streamchannel clear');
$.lang.register('discord.promotesystem.cmd.promoteadm.streamchannel.cleared', 'Stream announcement channel has been cleared.');
$.lang.register('discord.promotesystem.cmd.promoteadm.streamchannel.success', 'Stream announcement channel has been set to: $1');
$.lang.register('discord.promotesystem.cmd.promoteadm.revoke.nouser', 'Revoke the privilege of which user to be able to add themselves?');
$.lang.register('discord.promotesystem.cmd.promoteadm.revoke.success', '$1 will no longer be promoted and will no longer be able to manage themselves.');
$.lang.register('discord.promotesystem.cmd.promoteadm.allow.nouser', 'Allow which user to be able to add themselves again?');
$.lang.register('discord.promotesystem.cmd.promoteadm.allow.success', '$1 will be allowed to add themselves again.');
$.lang.register('discord.promotesystem.cmd.promoteadm.toggleselfmanage.off', 'Users will no longer be able to manage themselves via !promote add and delete.');
$.lang.register('discord.promotesystem.cmd.promoteadm.toggleselfmanage.on', 'Users will now be able to manage themselves via !promote add and delete.');
$.lang.register('discord.promotesystem.cmd.promoteadm.togglestats.off', 'Stats will no longer show when a stream is announced.');
$.lang.register('discord.promotesystem.cmd.promoteadm.togglestats.on', 'Stats will now show when a stream is announced.');
$.lang.register('discord.promotesystem.cmd.promoteadm.togglebanner.off', 'Banners will no longer show when a stream is announced.');
$.lang.register('discord.promotesystem.cmd.promoteadm.togglebanner.on', 'Banners will now show when a stream is announced.');
$.lang.register('discord.promotesystem.cmd.promoteadm.list.empty', 'No users are presently being promoted.');
$.lang.register('discord.promotesystem.cmd.promoteadm.list.success', 'Users being promoted: $1');
$.lang.register('discord.promotesystem.cmd.promoteadm.setinterval.nominutes', 'Provide an interval in minutes.');
$.lang.register('discord.promotesystem.cmd.promoteadm.setinterval.toolow', 'The interval should be 15 minutes or more as to not spam the channel.');
$.lang.register('discord.promotesystem.cmd.promoteadm.setinterval.success', 'The interval for promoting streamers has been set to $1 minutes.');
$.lang.register('discord.promotesystem.cmd.so.nouser', 'You must provide a user to lookup and shoutout.');
$.lang.register('discord.promotesystem.cmd.so.noexist', 'That user is not currently being promoted. Check !promoteadm list');
$.lang.register('discord.promotesystem.livemsg.title', '$1 is LIVE @ https://twitch.tv/$2');
$.lang.register('discord.promotesystem.livemsg.nowplaying', 'Now Playing');
$.lang.register('discord.promotesystem.livemsg.streamtitle', 'Stream Title');
$.lang.register('discord.promotesystem.livemsg.followers', 'Followers');
$.lang.register('discord.promotesystem.livemsg.views', 'Views');
$.lang.register('discord.promotesystem.livemsg.missingtitle', 'No Title Provided');
$.lang.register('discord.promotesystem.livemsg.missinggame', 'No Game Provided');
$.lang.register('discord.promotesystem.promotemsg.description', 'Be sure to follow and checkout $1');
$.lang.register('discord.promotesystem.promotemsg.biography', 'Bio');
$.lang.register('discord.promotesystem.promotemsg.nobio', 'No biography provided.');