[trunk] translations - halfway there

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1416 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo 2011-05-10 21:52:07 +00:00
parent 04044282ad
commit 07e49c3fbb
19 changed files with 113 additions and 52 deletions

View file

@ -1,5 +1,6 @@
package com.earth2me.essentials.commands;
import com.earth2me.essentials.Util;
import org.bukkit.Server;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@ -24,7 +25,7 @@ public class Commandkill extends EssentialsCommand
for (Player p : server.matchPlayer(args[0]))
{
p.setHealth(0);
sender.sendMessage("§cKilled " + p.getDisplayName() + ".");
sender.sendMessage(Util.format("kill", p.getDisplayName()));
}
}
}