Localize more things

This commit is contained in:
nossr50
2020-04-27 19:13:24 -07:00
parent 92c4ddce87
commit 666729cadc
24 changed files with 30 additions and 5 deletions

View File

@ -424,7 +424,7 @@ public final class CommandRegistrationManager {
private static void registerCompatibilityCommand() {
PluginCommand command = mcMMO.p.getCommand("mmocompat"); //TODO: Localize
command.setDescription("Information about mcMMO and whether or not its in compatibility mode or fully functional.");
command.setDescription(LocaleLoader.getString("Commands.Description.mmocompat"));
command.setUsage(LocaleLoader.formatString("Commands.Usage.0", "mmocompat"));
command.setExecutor(new CompatibilityCommand());
}