diff options
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/signs/SignTime.java')
-rw-r--r-- | Essentials/src/com/earth2me/essentials/signs/SignTime.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Essentials/src/com/earth2me/essentials/signs/SignTime.java b/Essentials/src/com/earth2me/essentials/signs/SignTime.java index 026f9f19d..2f6390f7a 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignTime.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignTime.java @@ -1,7 +1,7 @@ package com.earth2me.essentials.signs; import com.earth2me.essentials.ChargeException; -import static com.earth2me.essentials.I18n._; +import static com.earth2me.essentials.I18n.tl; import com.earth2me.essentials.Trade; import com.earth2me.essentials.User; import net.ess3.api.IEssentials; @@ -29,7 +29,7 @@ public class SignTime extends EssentialsSign sign.setLine(1, "ยง2Night"); return true; } - throw new SignException(_("onlyDayNight")); + throw new SignException(tl("onlyDayNight")); } @Override @@ -54,6 +54,6 @@ public class SignTime extends EssentialsSign Trade.log("Sign", "TimeNight", "Interact", username, null, username, charge, sign.getBlock().getLocation(), ess); return true; } - throw new SignException(_("onlyDayNight")); + throw new SignException(tl("onlyDayNight")); } } |