I18N: DeopHandler

This commit is contained in:
Sebastian Kaspari 2010-09-05 16:24:08 +02:00
parent 9e33ec9b01
commit ba16f15079
1 changed files with 2 additions and 2 deletions

View File

@ -43,13 +43,13 @@ public class DeopHandler extends BaseHandler
public void execute(String[] params, Server server, Conversation conversation, IRCService service) throws CommandException
{
if (conversation.getType() != Conversation.TYPE_CHANNEL) {
throw new CommandException("Only usable from within a channel");
throw new CommandException(service.getString(R.string.only_usable_from_channel));
}
if (params.length == 2) {
service.getConnection(server.getId()).deOp(conversation.getName(), params[1]);
} else {
throw new CommandException("Invalid number of params");
throw new CommandException(service.getString(R.string.invalid_number_of_params));
}
}