Explorar el Código

Use localized skill name in skill guide string.

Still need to localize the REST of the strings relating to the skill
guides, though.
GJ hace 12 años
padre
commit
037fd890dc
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  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("?"))