summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandrealname.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandrealname.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java b/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java
index 6a4f600cc..7a83641fc 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandrealname.java
@@ -1,7 +1,7 @@
package com.earth2me.essentials.commands;
import com.earth2me.essentials.CommandSource;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.User;
import com.earth2me.essentials.utils.FormatUtil;
import java.util.Locale;
@@ -38,7 +38,7 @@ public class Commandrealname extends EssentialsCommand
if (displayName.contains(whois))
{
foundUser = true;
- sender.sendMessage(u.getDisplayName() + " " + _("is") + " " + u.getName());
+ sender.sendMessage(u.getDisplayName() + " " + tl("is") + " " + u.getName());
}
}
if (!foundUser)