= Localized beans, help, help builder, info, invite
help builder localization currently will collapse for header titles. This isn't too big of a deal, but the word for 'commands' at least can be localized.
This commit is contained in:
@@ -16,7 +16,7 @@ public class CommandHelp extends Command
|
||||
public CommandHelp(KittyRole level, KittyRating rating) { super(level, rating); }
|
||||
|
||||
@Override
|
||||
public String HelpText() { return "Lets you look up specific commands, or get a link to a list of all commands."; }
|
||||
public String HelpText() { return Localizer.Stub("Lets you look up specific commands, or get a link to a list of all commands."); }
|
||||
|
||||
@Override
|
||||
public void OnRun(KittyGuild guild, KittyChannel channel, KittyUser user, UserInput input, Response res)
|
||||
@@ -25,11 +25,7 @@ public class CommandHelp extends Command
|
||||
|
||||
if(help == null)
|
||||
{
|
||||
help = "You can get help with a specific command by typing `!help command`!"
|
||||
+ "\nYou can also look at <https://www.rinsnowmew.com/bot/info/#commands>"
|
||||
+ "\nGeneral Commands: `boop, roll, choose, help, info, vote, "
|
||||
+ "results, showpoll, wolfram, cplus, java,"
|
||||
+ "beans, role, bet, yeet`";
|
||||
help = Localizer.Stub("You can get help with a specific command by typing `!help command`!\nYou can also look at <https://www.rinsnowmew.com/bot/info/#commands>\nGeneral Commands: `boop, roll, choose, help, info, vote, results, showpoll, wolfram, cplus, java, beans, role, bet, yeet`");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user