diff --git a/src/main/java/com/simibubi/create/foundation/command/KillTPSCommand.java b/src/main/java/com/simibubi/create/foundation/command/KillTPSCommand.java index 127886d87..6cf33ded2 100644 --- a/src/main/java/com/simibubi/create/foundation/command/KillTPSCommand.java +++ b/src/main/java/com/simibubi/create/foundation/command/KillTPSCommand.java @@ -3,23 +3,25 @@ package com.simibubi.create.foundation.command; import com.mojang.brigadier.CommandDispatcher; import com.mojang.brigadier.arguments.IntegerArgumentType; import com.simibubi.create.Create; +import com.simibubi.create.foundation.utility.Lang; import net.minecraft.command.CommandSource; import net.minecraft.command.Commands; -import net.minecraft.util.text.StringTextComponent; public class KillTPSCommand { + + public static void register(CommandDispatcher dispatcher) { dispatcher.register( - Commands.literal("killtps")//todo replace String Components with Translation Components + Commands.literal(Lang.translate("command.killTPSCommand")) .requires(cs -> cs.hasPermissionLevel(2)) .executes(ctx -> { //killtps no arguments - ctx.getSource().sendFeedback(new StringTextComponent(String.format("[Create]: Server tick is currently slowed by %s ms",Create.lagger.isLagging() ? Create.lagger.getTickTime() : 0)), true); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.slowed_by.0", Create.lagger.isLagging() ? Create.lagger.getTickTime() : 0), true); if (Create.lagger.isLagging()) - ctx.getSource().sendFeedback(new StringTextComponent("[Create]: use /killtps stop to bring back server tick to regular speed"), true); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.usage.0"), true); else - ctx.getSource().sendFeedback(new StringTextComponent("[Create]: use /killtps start to artificially slow down the server tick"),true); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.usage.1"),true); return 1; }) @@ -29,22 +31,22 @@ public class KillTPSCommand { int tickTime = Create.lagger.getTickTime(); if (tickTime > 0){ Create.lagger.setLagging(true); - ctx.getSource().sendFeedback(new StringTextComponent(String.format("[Create]: Server tick is slowed by %s ms now :)", tickTime)),true); - ctx.getSource().sendFeedback(new StringTextComponent("[Create]: use /killtps stop to bring back server tick to regular speed"),true); + ctx.getSource().sendFeedback((Lang.createTranslationTextComponent("command.killTPSCommand.status.slowed_by.1", tickTime)),true); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.usage.0"),true); } else { - ctx.getSource().sendFeedback(new StringTextComponent("[Create]: use /killtps start to artificially slow down the server tick"),true); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.usage.1"),true); } return 1; }) - .then(Commands.argument("tickTime", IntegerArgumentType.integer(1)) + .then(Commands.argument(Lang.translate("command.killTPSCommand.argument.tickTime"), IntegerArgumentType.integer(1)) .executes(ctx -> { //killtps start tickTime - int tickTime = IntegerArgumentType.getInteger(ctx, "tickTime"); + int tickTime = IntegerArgumentType.getInteger(ctx, Lang.translate("command.killTPSCommand.argument.tickTime")); Create.lagger.setTickTime(tickTime); Create.lagger.setLagging(true); - ctx.getSource().sendFeedback(new StringTextComponent(String.format("[Create]: Server tick is slowed by %s ms now :)", tickTime)),true); - ctx.getSource().sendFeedback(new StringTextComponent("[Create]: use /killtps stop to bring server tick to regular speed again"),true); + ctx.getSource().sendFeedback((Lang.createTranslationTextComponent("command.killTPSCommand.status.slowed_by.1", tickTime)),true); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.usage.0"),true); return 1; }) @@ -54,7 +56,7 @@ public class KillTPSCommand { .executes(ctx -> { //killtps stop Create.lagger.setLagging(false); - ctx.getSource().sendFeedback(new StringTextComponent("[Create]: Server tick is back to regular speed"), false); + ctx.getSource().sendFeedback(Lang.createTranslationTextComponent("command.killTPSCommand.status.slowed_by.2"), false); return 1; }) diff --git a/src/main/java/com/simibubi/create/foundation/utility/Lang.java b/src/main/java/com/simibubi/create/foundation/utility/Lang.java index 07705b7a3..479ae60e0 100644 --- a/src/main/java/com/simibubi/create/foundation/utility/Lang.java +++ b/src/main/java/com/simibubi/create/foundation/utility/Lang.java @@ -12,15 +12,15 @@ import net.minecraft.util.text.TranslationTextComponent; public class Lang { public static String translate(String key, Object... args) { - return getTranslationComponent(key, args).getFormattedText(); + return createTranslationTextComponent(key, args).getFormattedText(); } - private static TranslationTextComponent getTranslationComponent(String key, Object... args) { + public static TranslationTextComponent createTranslationTextComponent(String key, Object... args) { return new TranslationTextComponent(Create.ID + "." + key, args); } public static void sendStatus(PlayerEntity player, String key, Object... args) { - player.sendStatusMessage(getTranslationComponent(key, args), true); + player.sendStatusMessage(createTranslationTextComponent(key, args), true); } public static List translatedOptions(String prefix, String... keys) { diff --git a/src/main/resources/assets/create/lang/en_us.json b/src/main/resources/assets/create/lang/en_us.json index 536dd6d7f..413a4409c 100644 --- a/src/main/resources/assets/create/lang/en_us.json +++ b/src/main/resources/assets/create/lang/en_us.json @@ -432,6 +432,14 @@ "create.mechanical_mixer.min_ingredients": "Min. Ingredients", + "create.command.killTPSCommand": "killtps", + "create.command.killTPSCommand.status.slowed_by.0": "[Create]: Server tick is currently slowed by %s ms", + "create.command.killTPSCommand.status.slowed_by.1": "[Create]: Server tick is slowed by %s ms now :)", + "create.command.killTPSCommand.status.slowed_by.2": "[Create]: Server tick is back to regular speed", + "create.command.killTPSCommand.status.usage.0": "[Create]: use /killtps stop to bring back server tick to regular speed", + "create.command.killTPSCommand.status.usage.1": "[Create]: use /killtps start to artificially slow down the server tick", + "create.command.killTPSCommand.argument.tickTime": "tickTime", + "_comment": "-------------------------] ITEM DESCRIPTIONS [------------------------------------------------", "item.create.example_item.tooltip": "EXAMPLE ITEM (just a marker that this tooltip exists)",