Browse Source

Use localized skill name in skill guide string.

Still need to localize the REST of the strings relating to the skill
guides, though.
GJ 12 năm trước cách đây
mục cha
commit
037fd890dc
1 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 5 2
      src/main/java/com/gmail/nossr50/util/Page.java

+ 5 - 2
src/main/java/com/gmail/nossr50/util/Page.java

@@ -58,8 +58,11 @@ public class Page {
 
     public static void grabGuidePageForSkill(SkillType skilltype, Player player, String[] args)
     {
-        String capitalized = Misc.getCapitalized(skilltype.toString());
-        player.sendMessage(ChatColor.DARK_AQUA+"Guide for "+capitalized+" available type /"+skilltype.toString().toLowerCase()+" ? [Page#]"); //TODO: Needs more locale.
+        
+        String skillName = skilltype.toString();
+        String capitalized = Misc.getCapitalized(skillName);
+        String localized = Misc.getCapitalized(LocaleLoader.getString(capitalized + ".SkillName"));
+        player.sendMessage(ChatColor.DARK_AQUA+"Guide for "+localized+" available type /"+skilltype.toString().toLowerCase()+" ? [Page#]"); //TODO: Needs more locale.
         if (args.length >= 1)
         {
             if (args[0].equals("?"))