ソースを参照

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 年 前
コミット
037fd890dc
1 ファイル変更5 行追加2 行削除
  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("?"))