Sfoglia il codice sorgente

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 anni fa
parent
commit
037fd890dc
1 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  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("?"))