Add missing language pointers

This commit is contained in:
Luke Anderson (stuntguy3000) 2014-03-08 16:51:50 +10:30 committed by KHobbits
parent c59a204827
commit 077074c855
6 changed files with 18 additions and 13 deletions

View file

@ -58,7 +58,6 @@ public class Commandweather extends EssentialsCommand
}
}
//TODO: Translate these
@Override
protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
{
@ -71,7 +70,7 @@ public class Commandweather extends EssentialsCommand
final World world = server.getWorld(args[0]);
if (world == null)
{
throw new Exception("World named " + args[0] + " not found!");
throw new Exception(_("weatherInvalidWorldWorld", args[0]));
}
if (args.length > 2)
{