summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/textreader/HelpInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/textreader/HelpInput.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/textreader/HelpInput.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/Essentials/src/com/earth2me/essentials/textreader/HelpInput.java b/Essentials/src/com/earth2me/essentials/textreader/HelpInput.java
index e9dd0b9a7..d33b54a2c 100644
--- a/Essentials/src/com/earth2me/essentials/textreader/HelpInput.java
+++ b/Essentials/src/com/earth2me/essentials/textreader/HelpInput.java
@@ -56,7 +56,7 @@ public class HelpInput implements IText
final String node = "essentials." + k.getKey();
if (!settings.getData().getCommands().isDisabled(k.getKey()) && user.hasPermission(node))
{
- lines.add("§c" + k.getKey() + "§7: " + k.getValue().get(DESCRIPTION));
+ lines.add(_("helpLine", k.getKey(), k.getValue().get(DESCRIPTION)));
}
}
else
@@ -75,7 +75,7 @@ public class HelpInput implements IText
}
if (HelpPermissions.getPermission(pluginName).isAuthorized(user))
{
- lines.add("§c" + k.getKey() + "§7: " + value.get(DESCRIPTION));
+ lines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
}
else if (permissions instanceof List && !((List<Object>)permissions).isEmpty())
{
@@ -90,21 +90,21 @@ public class HelpInput implements IText
}
if (enabled)
{
- lines.add("§c" + k.getKey() + "§7: " + value.get(DESCRIPTION));
+ lines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
}
}
else if (permissions instanceof String && !"".equals(permissions))
{
if (user.hasPermission(permissions.toString()))
{
- lines.add("§c" + k.getKey() + "§7: " + value.get(DESCRIPTION));
+ lines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
}
}
else
{
if (!settings.getData().getCommands().getHelp().isHidePermissionlessCommands())
{
- lines.add("§c" + k.getKey() + "§7: " + value.get(DESCRIPTION));
+ lines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
}
}
}