init commit
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* 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('customcommands.add.error', 'That command already exists');
|
||||
$.lang.register('customcommands.add.success', 'Command !$1 has been created!');
|
||||
$.lang.register('customcommands.add.usage', 'Usage: !addcom (command) (message)');
|
||||
$.lang.register('customcommands.add.commandtag.notfirst', '(command) tag must be at the start of a custom command when used.');
|
||||
$.lang.register('customcommands.add.commandtag.invalid', '(command) tag command does not exist: $1');
|
||||
$.lang.register('customcommands.alias.delete.error.alias.404', 'Alias does not exist: !$1');
|
||||
$.lang.register('customcommands.alias.delete.success', 'The alias !$1 was successfully deleted!');
|
||||
$.lang.register('customcommands.alias.delete.usage', 'Usage: !delalias (alias name)');
|
||||
$.lang.register('customcommands.alias.error', 'An alias already exists for !$1. Delete it first.');
|
||||
$.lang.register('customcommands.alias.error.target404', 'The target command does not exist!');
|
||||
$.lang.register('customcommands.alias.error.exists', 'The command you want to alias to already exists.');
|
||||
$.lang.register('customcommands.add.disabled', 'That command is currently disabled. Re-enable the command or delete it to add a new command with that name.');
|
||||
$.lang.register('customcommands.alias.success', 'The command !$1 was successfully aliased to !$2');
|
||||
$.lang.register('customcommands.alias.usage', 'Usage: !aliascom (alias name) (existing command) [optional parameters]');
|
||||
$.lang.register('customcommands.delete.success', 'Command !$1 has been removed!');
|
||||
$.lang.register('customcommands.delete.usage', 'Usage: !delcom (command)');
|
||||
$.lang.register('customcommands.edit.404', 'You cannot overwrite a default command.');
|
||||
$.lang.register('customcommands.edit.editcom.alias', 'You cannot edit an alias, please use the following: !editcom !$1 $2');
|
||||
$.lang.register('customcommands.set.perm.error.target404', 'The command !$1 does not exist!');
|
||||
$.lang.register('customcommands.set.perm.success', 'Permissions for command: $1 set for group: $2 and higher.');
|
||||
$.lang.register('customcommands.set.perm.unset.success', 'All recursive permissions for the command: $1 and any of its aliases have been removed.');
|
||||
$.lang.register('customcommands.set.perm.usage', 'Usage: !permcom (command name) (group id/name). Restricts usage of a command to viewers with a certain permission level.');
|
||||
$.lang.register('customcommands.set.perm.404', 'Command could not be found: $1');
|
||||
$.lang.register('customcommands.set.price.error.404', 'Please select a command that exists and is available to non-mods.');
|
||||
$.lang.register('customcommands.set.price.error.invalid', 'Please enter a valid price of 0 or greater.');
|
||||
$.lang.register('customcommands.set.price.success', 'The price for !$1 has been set to $2 $3.');
|
||||
$.lang.register('customcommands.set.price.usage', 'Usage: !pricecom (command) [subcommand] [subaction] (price). Optional: subcommand and subaction');
|
||||
$.lang.register('customcommands.set.pay.error.404', 'Please select a command that exists and is available to non-mods.');
|
||||
$.lang.register('customcommands.set.pay.error.invalid', 'Please enter a valid payment of 0 or greater.');
|
||||
$.lang.register('customcommands.set.pay.success', 'The payment for !$1 has been set to $2 $3.');
|
||||
$.lang.register('customcommands.set.pay.usage', 'Usage: !paycom (command) (price)');
|
||||
$.lang.register('customcommands.404.no.commands', 'There are no custom commands, add one with !addcom');
|
||||
$.lang.register('customcommands.cmds', 'Current custom commands: $1');
|
||||
$.lang.register('customcommands.edit.usage', 'Usage: !editcom (command) (message)');
|
||||
$.lang.register('customcommands.edit.success', 'Command !$1 has been edited!');
|
||||
$.lang.register('customcommands.token.usage', 'Usage: !tokencom (command) (token) -- WARNING: This should be done from the bot console or web panel, if you run this from chat, anyone watching chat can copy your info!');
|
||||
$.lang.register('customcommands.token.success', 'Token set for command !$1! Make sure you put a (token) subtag in the customapi url for this command in the spot you want it to appear');
|
||||
$.lang.register('customcommands.touser.offline', 'Sorry, but $1 appears to be offline!');
|
||||
$.lang.register('customcommands.customapi.404', 'The !$1 command requires parameters.');
|
||||
$.lang.register('customcommands.customapijson.err', '!$1: An error occurred processing the API.');
|
||||
$.lang.register('customcommands.datetime.format.invalid', 'unrecognized date format "$1"');
|
||||
$.lang.register('customcommands.disable.usage', 'Usage: !disablecom (command)');
|
||||
$.lang.register('customcommands.disable.404', 'That command does not exist.');
|
||||
$.lang.register('customcommands.disable.err', 'That command is already disabled.');
|
||||
$.lang.register('customcommands.disable.success', 'Command !$1 has been disabled.');
|
||||
$.lang.register('customcommands.enable.usage', 'Usage: !enablecom (command)');
|
||||
$.lang.register('customcommands.enable.404', 'That command does not exist.');
|
||||
$.lang.register('customcommands.enable.err', 'That command is not disabled.');
|
||||
$.lang.register('customcommands.enable.success', 'Command !$1 has been re-enabled.');
|
||||
$.lang.register('customcommands.keyword.404', 'unknown keyword "$1"');
|
||||
$.lang.register('customcommands.lasttip.404', 'No donations found.');
|
||||
$.lang.register('customcommands.playsound.404', 'unknown audio hook "$1"');
|
||||
$.lang.register('customcommands.file.404', 'file not found: $1');
|
||||
$.lang.register('customcommands.reset.usage', 'Usage: !resetcom (command) (count). If no (count) then reset to 0.');
|
||||
$.lang.register('customcommands.reset.success', 'The counter for !$1 has been reset.');
|
||||
$.lang.register('customcommands.reset.change.fail', 'Invalid counter value: $1');
|
||||
$.lang.register('customcommands.reset.change.success', 'The counter for !$1 has been set to $2.');
|
||||
$.lang.register('customcommands.teamapi.team.404', 'you\'re not part of team "$1"');
|
||||
$.lang.register('customcommands.teamapi.member.404', 'member "$1" is not in team "$2"');
|
||||
$.lang.register('customcommands.botcommands', 'Commands: $1');
|
||||
$.lang.register('customcommands.botcommands.error', 'Provide a number to find a page.');
|
||||
$.lang.register('customcommands.botcommands.total', 'Total Pages: $1 [See also: https://phantombot.github.io/PhantomBot/guides/#guide=content/commands/commands]');
|
||||
@@ -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('deathcounter.set-error', 'Provide a new valid death counter value.');
|
||||
$.lang.register('deathcounter.set-success', 'Death counter for $1 set to $2.');
|
||||
$.lang.register('deathcounter.add-success', '$1 has died again in $2, bringing the total to $3.');
|
||||
$.lang.register('deathcounter.sub-success', 'Calling back a death, the total is now $2 in $1.');
|
||||
$.lang.register('deathcounter.sub-zero', 'The death counter for $1 is already zero, can\'t go any lower!');
|
||||
$.lang.register('deathcounter.counter', '$1 has died $3 times in $2.');
|
||||
$.lang.register('deathcounter.none', '$1 has not died in $2....yet.');
|
||||
$.lang.register('deathcounter.reset', 'Reset the death counter back to 0 from $2 for $1.');
|
||||
$.lang.register('deathcounter.reset-nil', 'The death counter for $1 is already 0.');
|
||||
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* 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('dualstreamcommand.usage', 'Usage: !multi [set / clear / timer / timerinterval]');
|
||||
$.lang.register('dualstreamcommand.set.usage', 'Usage: !multi set [channel(s)]');
|
||||
$.lang.register('dualstreamcommand.link.set', 'Multi link set! - http://multistre.am/$1');
|
||||
$.lang.register('dualstreamcommand.clear', 'Multi command cleared, and disabled.');
|
||||
$.lang.register('dualstreamcommand.timer.usage', 'Usage: !multi timer [on / off]');
|
||||
$.lang.register('dualstreamcommand.timer.enabled', 'Multi timer enabled.');
|
||||
$.lang.register('dualstreamcommand.timer.disabled', 'Multi timer disabled.');
|
||||
$.lang.register('dualstreamcommand.timerinterval.usage', 'Usage: !multi timerinterval (time in minutes)');
|
||||
$.lang.register('dualstreamcommand.timerinterval.err', 'Minimum for the timer is 5 minutes.');
|
||||
$.lang.register('dualstreamcommand.timerinterval.set', 'Timer interval set to $1 minutes!');
|
||||
$.lang.register('dualstreamcommand.link', 'http://multistre.am/');
|
||||
$.lang.register('dualstreamcommand.req.usage', 'Usage: !multi reqmessage (amount of messages)');
|
||||
$.lang.register('dualstreamcommand.reqmessages.set', 'Req message set to $1 messages!');
|
||||
@@ -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('highlightcommand.highlight.offline', 'Highlights can only be set when the stream is online.');
|
||||
$.lang.register('highlightcommand.highlight.usage', 'Usage: !highlight [description] (Using date stamp for timezone: $1)');
|
||||
$.lang.register('highlightcommand.highlight.success', 'Highlight successfully saved with a timestamp of $1.');
|
||||
$.lang.register('highlightcommand.gethighlights.no-highlights', 'There are currently no highlights.');
|
||||
$.lang.register('highlightcommand.clearhighlights.success', 'Highlights have been cleared.');
|
||||
$.lang.register('highlightcommand.highlights', 'Highlights: $1');
|
||||
@@ -0,0 +1,126 @@
|
||||
/*
|
||||
* 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('killcommand.self.1', '$1 managed to kill themself.');
|
||||
$.lang.register('killcommand.self.2', '$1 died from an unknown cause.');
|
||||
$.lang.register('killcommand.self.3', '$1 was crushed by a boulder, or some peice of debris.');
|
||||
$.lang.register('killcommand.self.4', '$1 exploded.');
|
||||
$.lang.register('killcommand.self.5', '$1 forgot how to breathe.');
|
||||
$.lang.register('killcommand.self.6', '$1 learned that cellular respiration uses oxygen, not sand.');
|
||||
$.lang.register('killcommand.self.7', '$1 died.');
|
||||
$.lang.register('killcommand.self.8', '$1 tried to befriend a wild grizzly bear.');
|
||||
$.lang.register('killcommand.self.9', '$1 suffocated.');
|
||||
$.lang.register('killcommand.self.10', '$1 tested the bounds of time and space, and lost.');
|
||||
$.lang.register('killcommand.self.11', '$1 imploded.');
|
||||
$.lang.register('killcommand.self.12', '$1 drowned.');
|
||||
$.lang.register('killcommand.self.13', '$1 ceased to be.');
|
||||
$.lang.register('killcommand.self.14', '$1 went kablewy!');
|
||||
$.lang.register('killcommand.self.15', '$1 figured out how to divide by 0!');
|
||||
$.lang.register('killcommand.self.16', '$1 took a long walk off a short pier.');
|
||||
$.lang.register('killcommand.self.17', '$1 fell off a ladder.');
|
||||
$.lang.register('killcommand.self.18', '$1 fell off a tree.');
|
||||
$.lang.register('killcommand.self.19', '$1 fell off of the roof.');
|
||||
$.lang.register('killcommand.self.20', '$1 burst into flames.');
|
||||
$.lang.register('killcommand.self.21', '$1 was struck by lightning.');
|
||||
$.lang.register('killcommand.self.22', '$1 starved to death.');
|
||||
$.lang.register('killcommand.self.23', '$1 was stabbed to death.');
|
||||
$.lang.register('killcommand.self.24', '$1 fell victim to gravity.');
|
||||
$.lang.register('killcommand.self.25', '$1\'s plead for death was answered.');
|
||||
$.lang.register('killcommand.self.26', '$1\'s vital organs were ruptured.');
|
||||
$.lang.register('killcommand.self.27', '$1\'s innards were made outwards.');
|
||||
$.lang.register('killcommand.self.28', '$1 was licked to death. Don\'t ask.');
|
||||
$.lang.register('killcommand.self.29', '$1 was deleted.');
|
||||
$.lang.register('killcommand.self.30', '$1 had to split. Literally..');
|
||||
$.lang.register('killcommand.self.31', '$1 has bled to death.');
|
||||
$.lang.register('killcommand.self.32', '$1 Food is a gift from God. Spices are a gift from the devil. I guess it was a little too spicy for you.');
|
||||
$.lang.register('killcommand.self.33', '$1 has died due to a vehicular explosion!');
|
||||
$.lang.register('killcommand.self.34', '$1 has killed themself!');
|
||||
$.lang.register('killcommand.self.35', '$1 has been blown up by a landmine!');
|
||||
$.lang.register('killcommand.self.36', '$1 died due to holding their breath for too long!');
|
||||
$.lang.register('killcommand.self.37', '$1 burned to death.');
|
||||
$.lang.register('killcommand.self.38', '$1 was blown up by a missile!');
|
||||
$.lang.register('killcommand.self.39', '$1 froze to death.');
|
||||
$.lang.register('killcommand.self.40', '$1 was dissolved in acid.');
|
||||
$.lang.register('killcommand.self.41', '$1 tried to swim in acid.');
|
||||
$.lang.register('killcommand.self.42', '$1 tried to swim in lava.');
|
||||
$.lang.register('killcommand.self.43', '$1 experienced kinetic energy.');
|
||||
$.lang.register('killcommand.self.44', '$1 blew up.');
|
||||
$.lang.register('killcommand.self.45', '$1 fell into a patch of fire.');
|
||||
$.lang.register('killcommand.self.46', '$1 fell out of a plane.');
|
||||
$.lang.register('killcommand.self.47', '$1 went up in flames.');
|
||||
$.lang.register('killcommand.self.48', '$1 withered away.');
|
||||
$.lang.register('killcommand.self.49', '$1 went skydiving, and forgot the parachute.');
|
||||
$.lang.register('killcommand.self.50', '$1 spontaneously combusted.');
|
||||
$.lang.register('killcommand.self.51', '$1 was struck with a bolt of inspiration, I mean lightning.');
|
||||
$.lang.register('killcommand.self.52', '$1 ended it all. Goodbye cruel world!');
|
||||
$.lang.register('killcommand.self.53', '$1 passed the event horizon.');
|
||||
|
||||
|
||||
$.lang.register('killcommand.other.1', '$1 murdered $2 with a unicorn\'s horn!');
|
||||
$.lang.register('killcommand.other.2', '$2 was killed by $1!');
|
||||
$.lang.register('killcommand.other.3', '$2 was mauled by $1 dressed up as a chicken.');
|
||||
$.lang.register('killcommand.other.4', '$2 was ripped apart by $1, daaaaaaamn!');
|
||||
$.lang.register('killcommand.other.5', '$2 was brutally murdered by $1 with a car!');
|
||||
$.lang.register('killcommand.other.6', '$1 covered $2 in meat sauce and threw them in a cage with a starved tiger.');
|
||||
$.lang.register('killcommand.other.7', '$1 genetically modified a Venus flytrap to grow abnormally large, and trapped $2 in a room with it.');
|
||||
$.lang.register('killcommand.other.8', '$1 shanked $2\'s butt, over and over again.');
|
||||
$.lang.register('killcommand.other.9', '$1 just wrote $2\'s name in their Death Note.');
|
||||
$.lang.register('killcommand.other.10', '$1 put $2 out of their misery.');
|
||||
$.lang.register('killcommand.other.11', '$1 destroyed $2!');
|
||||
$.lang.register('killcommand.other.12', '$1 atacó a $2 con un consolador grande!');
|
||||
$.lang.register('killcommand.other.13', '$2 was poked a bit too hard by $1 with a spork!');
|
||||
$.lang.register('killcommand.other.14', 'ZA WARUDO! $1 stopped time and throw hundreds of knives at $2. END!');
|
||||
$.lang.register('killcommand.other.15', '$1 attacked $2 with a rusty spork...and managed to kill $2 with very little effort.');
|
||||
$.lang.register('killcommand.other.16', '$1 stole a car known as \'KITT\' and ran over $2.');
|
||||
$.lang.register('killcommand.other.17', '$1 tickled $2 to death!');
|
||||
$.lang.register('killcommand.other.18', '$2\'s skull was crushed by $1!');
|
||||
$.lang.register('killcommand.other.19', '$2 is in several pieces after a tragic accident involving $1 and cutlery.');
|
||||
$.lang.register('killcommand.other.20', '$1 licked $2 until $2 was squishy, yeah.. squishy.');
|
||||
$.lang.register('killcommand.other.21', '$1 catapulted a huge load of rusty sporks on to $2. $2 died.');
|
||||
$.lang.register('killcommand.other.22', '$1 ran out of rusty sporks and unicorn horns to kill $2 with, so instead they used a rusty hanger.');
|
||||
$.lang.register('killcommand.other.23', '$1 came in like a mystical being of awesomeness and destroyed $2!');
|
||||
$.lang.register('killcommand.other.24', '$2 drowned whilst trying to escape from $1');
|
||||
$.lang.register('killcommand.other.25', '$2 walked into a cactus while running from $1');
|
||||
$.lang.register('killcommand.other.26', '$2 was attacked by $1 behind a Taco Bell.');
|
||||
$.lang.register('killcommand.other.27', '$1 went back in time to prevent himself from killing $2, apparently the time machine landed on $2 when $1 jumped back in time.');
|
||||
$.lang.register('killcommand.other.28', '$1 rekt $2 30-4 by doing a 360 no-scope.');
|
||||
$.lang.register('killcommand.other.33', '$1 struck the final blow and ended $2.');
|
||||
|
||||
/** Add "(jail)" at the start of the lang for the user to get timed out for the jailTime you set. You can also use $3 for the jail timeout time to be displayed. $4 = botname. */
|
||||
$.lang.register('killcommand.other.29', '(jail) $1 tried to kill $2 with a unicorn\'s horn, but police showed up before $1 had time.');
|
||||
$.lang.register('killcommand.other.30', '(jail) $1 tried to murder $2, but swat was hiding in the bushes and jumped on $1 before it could be done.');
|
||||
$.lang.register('killcommand.other.31', '(jail) $1 was going to hit $2 with a hammer. However $2 was trained in the Secret Nippon Arts!');
|
||||
$.lang.register('killcommand.other.32', '(jail) $4 was paid by $1 to assassinate $2. $1\'s plan failed because $4 was actually a undercover officer!');
|
||||
$.lang.register('killcommand.other.44', '(jail) $1 attacked $2 with a plastic spoon, but then suddenly a swarm of police surrounded $1 and detained them.');
|
||||
$.lang.register('killcommand.other.45', '(jail) $2 is protected by an unknown force which repels $1.');
|
||||
/** Jail End **/
|
||||
|
||||
$.lang.register('killcommand.other.34', '$1 was justly ended by $2.');
|
||||
$.lang.register('killcommand.other.35', '$1 was blown up by $2.');
|
||||
$.lang.register('killcommand.other.36', '$1 was shot off a ladder by $2.');
|
||||
$.lang.register('killcommand.other.37', '$1 tried to swim in lava while trying to escape $2.');
|
||||
$.lang.register('killcommand.other.38', '$1 got finished off by $2.');
|
||||
$.lang.register('killcommand.other.39', '$1 delivered the fatal blow on $2.');
|
||||
$.lang.register('killcommand.other.40', '$1 has punched $2 to death.');
|
||||
$.lang.register('killcommand.other.41', '$1 ruffled $2\'s fluff, and died!');
|
||||
$.lang.register('killcommand.other.42', '$1 hugged $2 a little too tight.');
|
||||
$.lang.register('killcommand.other.43', '$1 sent $2 to an awesome farm in the country.');
|
||||
|
||||
$.lang.register('killcommand.jail.timeout.usage', 'Usage: !jailtimeouttime (amount in seconds)');
|
||||
$.lang.register('killcommand.jail.timeout.set', 'Jail timeout time set to: $1 seconds.');
|
||||
|
||||
$.lang.register('killcommand.console.loaded', 'Found kill command messages: $1 self, $2 other.');
|
||||
@@ -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('lastseen.404', 'I haven\'t seen $1 yet.');
|
||||
$.lang.register('lastseen.response', '$1 has last been seen on $2 @ $3');
|
||||
$.lang.register('lastseen.usage', 'Usage: !lastseen [username].');
|
||||
@@ -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('namechange.default', 'Usage: !namechange [old name] [new name]');
|
||||
$.lang.register('namechange.updating', 'Updating name $1 to $2 in all the database tables. This may take time.');
|
||||
$.lang.register('namechange.success', 'Username $1 has been updated to $2 in $3 tables!');
|
||||
$.lang.register('namechange.notfound', 'Username $1 was not found in any tables.');
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* 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('streamcommand.vod.404', 'No videos were found.');
|
||||
$.lang.register('streamcommand.vod.online', 'Stream Uptime: $1 [$2]');
|
||||
$.lang.register('streamcommand.vod.offline', 'Stream is offline. Last video created: [$1] [Length: $2]');
|
||||
$.lang.register('streamcommand.playtime.offline', '$1 is not streaming right now.');
|
||||
$.lang.register('streamcommand.playtime.online', '$1 has been playing $2 for $3');
|
||||
$.lang.register('streamcommand.title.offline', 'Current Status: $1');
|
||||
$.lang.register('streamcommand.title.no.title', 'There\'s no status set.');
|
||||
$.lang.register('streamcommand.title.online', 'Current Status: $1. Uptime: $2');
|
||||
$.lang.register('streamcommand.title.set.usage', 'Usage: !settitle [stream title]. Currently: $1');
|
||||
$.lang.register('streamcommand.game.online', 'Current Game: $1. Playtime: $2');
|
||||
$.lang.register('streamcommand.game.offline', 'Current Game: $1');
|
||||
$.lang.register('streamcommand.game.no.game', 'There\'s no game set.');
|
||||
$.lang.register('streamcommand.game.set.usage', 'Usage: !setgame [game title]. Currently: $1');
|
||||
$.lang.register('streamcommand.communities.set.usage', 'Usage: !setcommunities [communities]. Currently: $1');
|
||||
$.lang.register('streamcommand.viewers', 'Currently $1 viewers are watching.');
|
||||
$.lang.register('streamcommand.online.offline', 'Stream is offline.');
|
||||
$.lang.register('streamcommand.online.online', 'Stream is online.');
|
||||
$.lang.register('streamcommand.createdat.404', 'Please provide a channel');
|
||||
$.lang.register('streamcommand.createdat.error', 'The channel does not exist or a Twitch API error occurred.');
|
||||
$.lang.register('streamcommand.createdat', 'Channel: $1 | Created At: $2');
|
||||
@@ -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('top5.default', 'Top $1 $2: $3');
|
||||
$.lang.register('top5.points-disabled', 'Points are disabled.');
|
||||
$.lang.register('top5.amount.points.usage', 'Usage: !topamount (amount) - Set how many viewers will appear in the !top points list.');
|
||||
$.lang.register('top5.amount.max', 'The max amount of users is 15.');
|
||||
$.lang.register('top5.amount.points.set', '$1 users will now show in the !top command.');
|
||||
$.lang.register('top5.amount.time.usage', 'Usage: !toptimeamount (amount) - Set how many viewers will appear in the !toptime list.');
|
||||
$.lang.register('top5.amount.time.set', '$1 viwers will now show in the !toptime command.');
|
||||
$.lang.register('top5.reloadtopbots', 'Deprecated. Please run !reloadbots');
|
||||
Reference in New Issue
Block a user