From 221abecc7838dbef3cc77ba3d528c136f668cc1c Mon Sep 17 00:00:00 2001 From: Aikar <aikar@aikar.co> Date: Wed, 4 May 2016 23:55:48 -0400 Subject: [PATCH] Add getI18NDisplayName API Gets the Display name as seen in the Client. Currently the server only supports the English language. To override this, You must replace the language file embedded in the server jar. --- .../java/org/bukkit/inventory/ItemFactory.java | 16 ++++++++++++++++ .../java/org/bukkit/inventory/ItemStack.java | 15 +++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/paper-api/src/main/java/org/bukkit/inventory/ItemFactory.java b/paper-api/src/main/java/org/bukkit/inventory/ItemFactory.java index d534225808..333884bc8f 100644 --- a/paper-api/src/main/java/org/bukkit/inventory/ItemFactory.java +++ b/paper-api/src/main/java/org/bukkit/inventory/ItemFactory.java @@ -220,4 +220,20 @@ public interface ItemFactory { @NotNull net.kyori.adventure.text.Component displayName(@NotNull ItemStack itemStack); // Paper end - Adventure + + // Paper start - add getI18NDisplayName + /** + * Gets the Display name as seen in the Client. + * Currently, the server only supports the English language. To override this, + * You must replace the language file embedded in the server jar. + * + * @param item Item to return Display name of + * @return Display name of Item + * @deprecated {@link ItemStack} implements {@link net.kyori.adventure.translation.Translatable}; use that and + * {@link net.kyori.adventure.text.Component#translatable(net.kyori.adventure.translation.Translatable)} instead. + */ + @Nullable + @Deprecated(since = "1.18.1", forRemoval = true) + String getI18NDisplayName(@Nullable ItemStack item); + // Paper end - add getI18NDisplayName } diff --git a/paper-api/src/main/java/org/bukkit/inventory/ItemStack.java b/paper-api/src/main/java/org/bukkit/inventory/ItemStack.java index a71a37e383..e2cc1ea49f 100644 --- a/paper-api/src/main/java/org/bukkit/inventory/ItemStack.java +++ b/paper-api/src/main/java/org/bukkit/inventory/ItemStack.java @@ -642,5 +642,20 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, Translat public net.kyori.adventure.text.@NotNull Component displayName() { return Bukkit.getServer().getItemFactory().displayName(this); } + + /** + * Gets the Display name as seen in the Client. + * Currently the server only supports the English language. To override this, + * You must replace the language file embedded in the server jar. + * + * @return Display name of Item + * @deprecated {@link ItemStack} implements {@link net.kyori.adventure.translation.Translatable}; use that and + * {@link net.kyori.adventure.text.Component#translatable(net.kyori.adventure.translation.Translatable)} instead. + */ + @Nullable + @Deprecated + public String getI18NDisplayName() { + return Bukkit.getServer().getItemFactory().getI18NDisplayName(this); + } // Paper end }